-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
96 lines (72 loc) · 2.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from setuptools import find_packages
from setuptools import setup
import os
try:
import tensorflow
tf_installed = True
except ImportError:
tf_installed = False
def read_requirements(file_path='requirements.txt'):
if not os.path.exists(file_path):
return []
with open(file_path, 'r')as f:
lines = f.readlines()
lines = [x.strip('\n').strip(' ') for x in lines]
lines = list(filter(lambda x: len(x) > 0 and not x.startswith('#'), lines))
return lines
try:
execfile
except NameError:
def execfile(fname, globs, locs=None):
locs = locs or globs
exec(compile(open(fname).read(), fname, "exec"), globs, locs)
HERE = os.path.dirname((os.path.abspath(__file__)))
version_ns = {}
execfile(os.path.join(HERE, 'hyperts', '_version.py'), version_ns)
version = version_ns['__version__']
MIN_PYTHON_VERSION = '>=3.7'
def read_description(file_path='README.md'):
with open(file_path, encoding='utf-8') as f:
desc = f.read()
return desc
long_description = read_description()
requires = read_requirements()
if not tf_installed:
requirements = ['tensorflow>=2.0.0,<=2.10', ] + requires
setup(
name='hyperts',
version=version,
description='',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/DataCanvasIO/HyperTS',
author='DataCanvas Community',
author_email='yangjian@zetyun.com',
license='Apache License 2.0',
install_requires=requires,
python_requires=MIN_PYTHON_VERSION,
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'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', 'tests')),
package_data={
'hyperts': ['examples/*', 'examples/**/*', 'examples/**/**/*', 'datasets/*.pkl', 'datasets/*.csv'],
},
zip_safe=False,
include_package_data=True,
)