-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
60 lines (48 loc) · 1.74 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
import os
import setuptools
from setuptools import setup
# Get version and release info, which is all stored in shablona/version.py
ver_file = os.path.join('hardy', 'version.py')
with open(ver_file) as f:
v = exec(f.read())
# Give setuptools a hint to complain if it's too old a version
# 24.2.0 added the python_requires option
# Should match pyproject.toml
# SETUP_REQUIRES = ['setuptools >= 24.2.0']
#
# # This enables setuptools to install wheel on-the-fly
#
# SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []
setup(name='hardy', version=1.0,
description='Handling Arbitrary Recognition of Data, y not',
description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
url='https://github.com/EISy-as-Py/hardy',
license='MIT',
author='Maria Politi, Abdul Moeez, David Hurt',
python_requires="~=3.5",
install_requires=[
"numpy==1.18.1",
"pandas==1.0.3",
"keras==2.3.1",
"tensorflow==2.2.0",
"scikit-learn==0.23.1",
"keras-tuner==1.0.1",
"h5py==2.10.0",
"plotly==4.8.1",
"scikit-image==0.17.2",
"opencv-python",
"grpcio==1.24.3",
"pyyaml==5.4",
"scipy==1.4.1",
"python-dateutil==2.8.1",
"pytz==2020.1",
"google-pasta",
],
packages=setuptools.find_packages())
classifiers = ("Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent")