-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.46 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.46 KB
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
import setuptools
__version__ = "1.3.2"
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="ems-dataflow-testframework",
version=__version__,
author="Emarsys",
description="Framework helping testing Google Cloud Dataflows",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["tests", "test_.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"atomicwrites==1.3.0",
"attrs==19.1.0",
"cachetools==3.1.1",
"certifi==2019.6.16",
"chardet==3.0.4",
"ems-gcp-toolkit==0.1.76",
"google-auth>=1.10.0,<2.0.0",
"google-cloud-bigtable==1.0.0",
"google-resumable-media==0.4.0",
"grpcio>=1.34.0",
"idna==2.8",
"importlib-metadata==0.21",
"inflection==0.3.1",
"more-itertools==7.2.0",
"packaging==19.1",
"pluggy==0.13.0",
"protobuf==3.9.1",
"py==1.8.0",
"pyasn1==0.4.7",
"pyasn1-modules==0.2.6",
"pyparsing==2.4.2",
"pytest==5.1.2",
"pytz==2019.2",
"requests==2.22.0",
"rsa==4.0",
"six==1.12.0",
"tenacity==5.1.1",
"urllib3==1.25.3",
"wcwidth==0.1.7",
"zipp==0.6.0"
]
)