-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
64 lines (55 loc) · 2.3 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
# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
# ==============================================================================
from setuptools import setup, find_packages
import sys
requires = [
'mxnet>=1.2.0',
'numpy>=1.10.1',
'scikit-learn>=0.19.2',
'matplotlib>=2.2.2'
]
# get __version__ variable
exec(open("leap/__version__.py").read())
# enforce >Python3 for all versions of pip/setuptools
assert sys.version_info >= (3,), 'This package requires Python 3.'
setup(
name='leap',
version=__version__, # noqa
description='Leap meta-learner',
# long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/amzn/xfer/leap',
packages=find_packages(exclude=['test*']),
include_package_data=True,
install_requires=requires,
python_requires='>=3', # requires setuptools>=24.2.0 for packaging and pip>=9.0.0 on download for this to work
license='Apache License 2.0',
classifiers=(
# https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
)
)