-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
49 lines (46 loc) · 1.81 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
from setuptools import setup, find_packages
import re
with open("README.md", "r") as fh:
long_description = fh.read()
def get_version():
with open("fcmaes/__init__.py", "r") as f:
match = re.search(r"(?m)^__version__\s*=\s*['\"](.+)['\"]$", f.read())
return match.group(1)
setup(
name='fcmaes',
python_requires='>=3.7',
version=get_version(),
description=('A Python 3 gradient-free optimization library.'),
long_description=long_description,
long_description_content_type="text/markdown",
author='Dietmar Wolz',
author_email='[email protected]',
url='https://github.com/dietmarwo/fast-cma-es',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy', 'scipy', 'scikit-learn', 'threadpoolctl', 'numba', 'loguru'
],
classifiers = [
"Intended Audience :: Manufacturing",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Scheduling",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
],
keywords=["optimization", "multi-objective", "parallel"],
include_package_data=True,
)