-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (63 loc) · 1.88 KB
/
setup.py
File metadata and controls
66 lines (63 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = {}
with open("./vortexasdk/version.py") as fp:
exec(fp.read(), version)
setuptools.setup(
name="vortexasdk",
version=version["__version__"],
author="Vortexa Developers",
author_email="developers@vortexa.com",
description="Vortexa SDK",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
url="https://github.com/vortechsa/python-sdk",
license="Apache Software License 2.0",
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
"urllib3>=1.26",
"flatten-dict>=0.4.2",
"pandas>=2.0.0",
"requests>=2.31.0",
"pydantic>=2.0.0,<3.0.0",
"tqdm<5.0.0",
],
extras_require={
"tests": [
"flake8==3.7.9",
"black==23.1.0",
"mkdocs==1.2.4",
"mypy==1.9.0",
"pre-commit==1.20.0",
"pytest==8.1.1",
"pydoc-markdown==2.1.3",
"pyyaml==6.0.1",
"six==1.16.0",
"tabulate==0.9.0",
"xlrd==1.2.0",
"openpyxl==3.0.7",
"types-requests==2.28.9",
"types-urllib3==1.26.23",
"types-tabulate==0.9.0",
"types-python-dateutil==2.8.19",
"types-six==1.16.21.20240311",
"jupyter==1.0.0",
"statsmodels==0.13.5",
"matplotlib>=3.5.3",
"packaging>=24.0",
],
"binder": [
"jupyter==1.0.0",
"statsmodels>=0.13.5",
"matplotlib>=3.5.3",
],
"deploy": ["wheel==0.37.1", "twine>=5.0.0"],
},
)