-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
44 lines (41 loc) · 1.01 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
from setuptools import find_packages, setup
requirements = [
"cachetools>=4.2.1,<6",
"python-consul~=1.0",
"redis>=2.10.6,<5",
"thrift~=0.13",
"boto3~=1.9",
"pyee~=6.0",
]
setup(
name="flipper-client",
version="1.3.2",
packages=find_packages(),
license="Apache License 2.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=requirements,
extras_require={
"postgres": ["psycopg~=3.0.10"],
"dev": [
"six>=1.12",
"fakeredis~=1.0",
"pytest~=7.1.0",
"ipython",
"thrift",
"setuptools",
"wheel",
"ipdb",
"black==22.1.0",
"pre-commit",
"isort",
"flake8",
"mypy",
"moto",
"bandit",
"twine",
"testing.postgresql",
],
},
classifiers=["License :: OSI Approved :: Apache Software License"],
)