-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·53 lines (50 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "microcosm-caching"
version = "1.1.0"
setup(
name=project,
version=version,
description="Caching for microservices using microcosm.",
author="Globality Engineering",
author_email="[email protected]",
url="https://github.com/globality-corp/microcosm-caching",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
install_requires=[
"boto3>=1.5.8",
"marshmallow>=3.0.0",
"microcosm>=4.0.0",
"microcosm-logging>=2.0.0",
"pymemcache>=3.0.0",
"simplejson>=3.16.0",
],
extras_require={
"metrics": "microcosm-metrics>=3.0.0",
"lint": [
"isort>=5",
],
"test": [
"coverage>=3.7.1",
"parameterized>=0.7.4",
"PyHamcrest>=1.8.5",
"pytest-cov>=5.0.0",
],
"typehinting": [
"mypy",
"types-simplejson",
],
},
setup_requires=[
],
dependency_links=[
],
entry_points={
"microcosm.factories": [
"resource_cache = microcosm_caching.factories:configure_resource_cache",
"build_info = microcosm_caching.build_info:configure_build_info",
]
},
)