forked from optuna/optuna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
113 lines (93 loc) · 3.39 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import os
import pkg_resources
from setuptools import find_packages
from setuptools import setup
import sys
try:
from typing import Dict # NOQA
from typing import List # NOQA
from typing import Optional # NOQA
from pkg_resources import Distribution # NOQA
except ImportError:
# Built-in `typing` module is only available in Python 3.5 or newer.
# The above imports are only used by `mypy`, so we simply ignore them
# if they are unavailable in the execution environment.
pass
def get_version():
# type: () -> str
version_filepath = os.path.join(os.path.dirname(__file__), 'optuna', 'version.py')
with open(version_filepath) as f:
for line in f:
if line.startswith('__version__'):
return line.strip().split()[-1][1:-1]
assert False
def get_long_description():
# type: () -> str
readme_filepath = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme_filepath) as f:
return f.read()
def get_install_requires():
# type: () -> List[str]
install_requires = [
'alembic', 'cliff', 'colorlog', 'numpy', 'pandas', 'scipy', 'six',
'sqlalchemy>=1.1.0', 'typing',
]
if sys.version_info[0] == 2:
install_requires.extend(['enum34'])
return install_requires
def get_extras_require():
# type: () -> Dict[str, List[str]]
extras_require = {
'checking': ['autopep8', 'hacking'],
'testing': [
'bokeh', 'chainer>=5.0.0', 'cma', 'keras', 'lightgbm', 'mock',
'mpi4py', 'mxnet', 'plotly>=4.0.0', 'pytest', 'scikit-optimize',
'tensorflow', 'xgboost', 'scikit-learn>=0.19.0',
],
'example': [
'chainer', 'keras', 'catboost', 'lightgbm', 'scikit-learn',
'tensorflow', 'mxnet', 'xgboost', 'torch', 'torchvision',
'dask-ml', 'dask[dataframe]'
],
'document': ['sphinx', 'sphinx_rtd_theme'],
'codecov': ['pytest-cov', 'codecov'],
}
if sys.version_info >= (3, 5): # mypy does not support Python 2.x.
extras_require['checking'].append('mypy')
return extras_require
def find_any_distribution(pkgs):
# type: (List[str]) -> Optional[Distribution]
for pkg in pkgs:
try:
return pkg_resources.get_distribution(pkg)
except pkg_resources.DistributionNotFound:
pass
return None
pfnopt_pkg = find_any_distribution(['pfnopt'])
if pfnopt_pkg is not None:
msg = 'We detected that PFNOpt is installed in your environment.\n' \
'PFNOpt has been renamed Optuna. Please uninstall the old\n' \
'PFNOpt in advance (e.g. by executing `$ pip uninstall pfnopt`).'
print(msg)
exit(1)
setup(
name='optuna',
version=get_version(),
description='A hyperparameter optimization framework',
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Takuya Akiba',
author_email='[email protected]',
url='https://optuna.org/',
packages=find_packages(),
package_data={
'optuna': [
'storages/rdb/alembic.ini',
'storages/rdb/alembic/*.*',
'storages/rdb/alembic/versions/*.*'
]
},
install_requires=get_install_requires(),
tests_require=get_extras_require()['testing'],
extras_require=get_extras_require(),
entry_points={'console_scripts': ['optuna = optuna.cli:main']})