-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
30 lines (28 loc) · 1.28 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
from setuptools import setup
exec(open('yabox/version.py').read())
setup(
name='yabox',
version=__version__,
description='Yet another black-box optimization library for Python',
author='Pablo Rodriguez-Mier',
author_email="[email protected]",
packages=['yabox', 'yabox.algorithms', 'yabox.problems'],
install_requires=['numpy>=1.7'],
extras_require={
'notebooks': ['jupyter>=1.0.0'],
'visualization': ['matplotlib>=1.3'],
'show_progress': ['tqdm>=4.46.0']},
tests_require=['pytest', 'pytest-pep8'],
url='https://github.com/pablormier/yabox',
download_url='https://github.com/pablormier/yabox/archive/v{0}.tar.gz'.format(__version__),
keywords=['optimization', 'black-box', 'data science', 'evolutionary', 'algorithms'],
license='Apache License 2.0',
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.4'],
)