-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.32 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
import setuptools
with open("README.rst", 'r') as f:
long_description = f.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'requests[security]==2.22.0',
'numpy==1.22.2',
'opencv-python==4.5.5.62',
'pyopenssl==19.1.0',
'ndg-httpsclient==0.5.1',
'pyasn1==0.4.8'
]
test_requirements = ['pytest>=3', ]
setuptools.setup(
name='datagym',
version='0.7.2',
description='Datagym Python API Wrapper',
author='Johannes Pflugmacher, Alexej Penner, Bartu Soykök',
author_email='support@datagym.ai',
license="BSD license",
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
long_description=long_description,
url='https://www.datagym.ai/',
packages=setuptools.find_packages(include=['datagym', 'datagym.*']),
install_requires=requirements,
test_suite='tests',
tests_require=test_requirements,
include_package_data=True
)