forked from datatorch/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (52 loc) · 1.65 KB
/
setup.py
File metadata and controls
57 lines (52 loc) · 1.65 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
from setuptools import setup, find_packages
import sys
assert sys.version_info >= (3, 6, 0), "DataTorch requires Python 3.6+"
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
requirements = [
"Click~=7.0",
"numpy",
"gql==3.0.0a4",
"websockets",
"requests",
"typing_extensions~=3.7",
"psutil~=5.7.0",
"aiodocker~=0.19.0",
"Jinja2~=2.0",
"PyYAML~=5.0",
"aiostream~=0.4.0",
]
requirements_agents = []
setup(
name="datatorch",
version="0.4.2",
description="A CLI and library for interacting with DataTorch",
author="DataTorch",
author_email="support@datatorch.io",
entry_points={
"console_scripts": ["datatorch=datatorch.cli:main", "dt=datatorch.cli:main"]
},
url="https://github.com/datatorch/python",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
extras_require={"agent": requirements_agents},
python_requires=">=3.6",
license="MIT license",
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)