forked from causify-ai/kaizenflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 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
54
55
56
57
58
59
60
# type: ignore
# TODO(gp): Use `poetry build` instead of specifying the dependencies here.
from distutils.util import convert_path
from setuptools import setup
# From https://stackoverflow.com/questions/2058802
main_ns = {}
ver_path = convert_path("helpers/__init__.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
INSTALL_REQUIRES = [
# "numpy >= 1.17.5",
# "pandas >= 1.1.1",
# "docker >= 4.3.1",
# "jsonpickle >= 1.4.1",
# "boto3 >= 1.14.51",
# "botocore >= 1.17.51",
# "psycopg2 >= 2.8.5",
# "matplotlib >= 3.3.1",
# "lxml >= 4.5.2",
]
TEST_REQUIRES = ["pytest>=5.0.0"]
PACKAGES = [
"helpers",
]
setup(
version=main_ns["__version__"],
name="helpers",
description="helpers",
long_description="",
long_description_content_type="text/markdown",
keywords=[],
author="GP Saggese, Paul Smith",
author_email="",
maintainer="",
maintainer_email="",
url="",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
install_requires=INSTALL_REQUIRES,
tests_require=TEST_REQUIRES,
# TODO(gp): Switch to Python 3.9.
python_requires=">= 3.7",
test_suite="pytest",
packages=PACKAGES,
project_urls={},
)