-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
69 lines (61 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
'''
Author: jianzhnie
Date: 2021-09-30 15:23:37
LastEditTime: 2021-11-29 16:59:02
LastEditors: jianzhnie
Description:
'''
import os
import sys
from setuptools import find_packages, setup
if __name__ == '__main__':
if sys.version_info < (3, 7):
raise ValueError(
'Unsupported Python version %d.%d.%d found. Auto-Timm requires Python '
'3.7 or higher.' % (sys.version_info.major, sys.version_info.minor,
sys.version_info.micro))
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'requirements.txt')) as fp:
install_reqs = [
r.rstrip() for r in fp.readlines()
if not r.startswith('#') and not r.startswith('git+')
]
with open('autotimm/__version__.py') as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
with open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='autotimm',
author='Jianzh Nie',
author_email='jianzhnie@gmail.com',
description='Automatic machine learning for Timm data.',
long_description=long_description,
long_description_content_type='text/markdown',
version=version,
packages=find_packages(
exclude=['test', 'scripts', 'examples', 'docs']),
install_requires=install_reqs,
include_package_data=True,
license='Apache License',
platforms=['Linux'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords=[
'automated machine learning', 'automl', 'machine learning',
'data science', 'data mining', 'autotimm'
],
python_requires='>=3.7',
url='https://github.com/jianzhnie/AutoTimm',
)