forked from autogluon/autogluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (72 loc) · 2.31 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
#!/usr/bin/env python
import os
import shutil
import subprocess
import codecs
import os.path
from setuptools import setup, find_packages, find_namespace_packages
cwd = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join('..', 'VERSION')) as version_file:
version = version_file.read().strip()
"""
To release a new stable version on PyPi, simply tag the release on github, and the Github CI will automatically publish
a new stable version to PyPi using the configurations in .github/workflows/pypi_release.yml .
You need to increase the version number after stable release, so that the nightly pypi can work properly.
"""
try:
if not os.getenv('RELEASE'):
from datetime import date
today = date.today()
day = today.strftime("b%Y%m%d")
version += day
except Exception:
pass
def create_version_file():
global version, cwd
print('-- Building version ' + version)
version_path = os.path.join(cwd, 'src', 'autogluon', 'vision', 'version.py')
with open(version_path, 'w') as f:
f.write('"""This is autogluon version file."""\n')
f.write("__version__ = '{}'\n".format(version))
long_description = open(os.path.join('..', 'README.md')).read()
MIN_PYTHON_VERSION = '>=3.6.*'
requirements = [
'Pillow<=6.2.1',
'numpy>=1.16.0',
'matplotlib',
'gluoncv>=0.5.0,<1.0',
'graphviz<0.9.0,>=0.8.1',
'pandas>=1.0.0,<2.0',
f'autogluon.core=={version}',
f'autogluon.mxnet=={version}'
]
test_requirements = [
'pytest',
'openml'
]
if __name__ == '__main__':
create_version_file()
setup(
# Metadata
name='autogluon.vision',
version=version,
author='AutoGluon Community',
url='https://github.com/awslabs/autogluon',
description='AutoML Toolkit with MXNet Gluon',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache',
# Package info
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=["autogluon"],
zip_safe=True,
include_package_data=True,
install_requires=requirements + test_requirements,
python_requires=MIN_PYTHON_VERSION,
package_data={'autogluon': [
'LICENSE',
]},
entry_points={
},
)