forked from Epistimio/orion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
85 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
85
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation script for Oríon."""
import os
from setuptools import setup
import versioneer
repo_root = os.path.dirname(os.path.abspath(__file__))
tests_require = [
'pytest>=3.0.0'
]
packages = [
'orion.core',
'orion.client',
'orion.algo',
'orion.storage'
]
setup_args = dict(
name='orion',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Asynchronous [black-box] Optimization',
long_description=open(os.path.join(repo_root, "README.rst"), 'rt', encoding='utf8').read(),
license='BSD-3-Clause',
author=u'Epistímio',
author_email='xavier.bouthillier@umontreal.ca',
url='https://github.com/epistimio/orion',
packages=packages,
package_dir={'': 'src'},
include_package_data=True,
entry_points={
'console_scripts': [
'orion = orion.core.cli:main',
],
'OptimizationAlgorithm': [
'random = orion.algo.random:Random',
'asha = orion.algo.asha:ASHA',
],
'Storage': [
'legacy = orion.storage.legacy:Legacy'
]
},
install_requires=['PyYAML', 'pymongo>=3', 'numpy', 'scipy', 'gitpython', 'filelock',
'tabulate', 'AppDirs'],
tests_require=tests_require,
setup_requires=['setuptools', 'appdirs', 'pytest-runner'],
extras_require=dict(test=tests_require),
# "Zipped eggs don't play nicely with namespace packaging"
# from https://github.com/pypa/sample-namespace-packages
zip_safe=False
)
setup_args['keywords'] = [
'Machine Learning',
'Deep Learning',
'Distributed',
'Optimization',
]
setup_args['platforms'] = ['Linux']
setup_args['classifiers'] = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
] + [('Programming Language :: Python :: %s' % x)
for x in '3 3.5 3.6 3.7'.split()]
if __name__ == '__main__':
setup(**setup_args)