-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
55 lines (47 loc) · 1.56 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
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from setuptools import find_packages
from setuptools import setup
version = '0.1.1'
requirements = [
'hypernets>=0.1.2',
'tensorflow>=2.1.0'
]
MIN_PYTHON_VERSION = '>=3.6.*'
long_description = open('README.md', encoding='utf-8').read()
setup(
name='hyperkeras',
version=version,
description='An AutoDL tool based on Tensorflow and Keras',
long_description=long_description,
long_description_content_type="text/markdown",
url='',
author='DataCanvas Community',
author_email='[email protected]',
license='Apache License 2.0',
install_requires=requirements,
python_requires=MIN_PYTHON_VERSION,
extras_require={
'hypernets_tests': ['pytest', ],
'gpu': ['tensorflow-gpu>=2.1.0', ]
},
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=('docs', 'hypernets_tests')),
package_data={
},
zip_safe=False,
include_package_data=True,
)