-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
61 lines (58 loc) · 1.88 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
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="servicelayer",
version="1.23.1",
description="Basic remote service functions for alephdata components",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="storage files s3",
author="Organized Crime and Corruption Reporting Project",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/alephdata/servicelayer",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
namespace_packages=[],
include_package_data=True,
zip_safe=True,
install_requires=[
"banal >= 1.0.6, < 2.0.0",
"normality >= 2.4.0, < 3.0.0",
"fakeredis >= 2.11.2, < 3.0.0",
"redis <= 4.6.0",
"sqlalchemy >= 1.4.49, < 3.0.0",
"structlog >= 20.2.0, < 25.0.0",
"colorama >= 0.4.4, < 1.0.0",
"pika >= 1.3.1, < 2.0.0",
"prometheus-client >= 0.17.1, < 0.21.0",
],
extras_require={
"amazon": ["boto3 >= 1.11.9, <2.0.0"],
"google": [
"grpcio >= 1.32.0, <2.0.0",
"google-cloud-storage >= 1.31.0, < 3.0.0",
],
"dev": [
"twine",
"moto < 5",
"boto3 >= 1.11.9, <2.0.0",
"pytest >= 3.6",
"coverage",
"pytest-cov",
"time-machine>=2.14.1, <3.0.0",
],
},
test_suite="tests",
entry_points={
"servicelayer.test": ["test = servicelayer.extensions:get_extensions"]
},
)