-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
23 lines (22 loc) · 1011 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="simulated_annealing",
packages=find_packages(),
version="0.4.0",
author='Skyler Grammer, Andrew Nystrom',
author_email="[email protected], [email protected]",
description="A Simulated Annealing implimentation with a scikit-learn style API backed by joblib for speed.",
url="https://github.com/skylergrammer/SimulatedAnnealing",
keywords=["simulated", "annealing", "parameter", "hyperparameter", "optimization", "optimisation", "model", "selection"],
license="Apache 2.0",
install_requires=['scikit-learn>=0.16.0', 'numpy>=1.9.0', 'joblib>=0.17.0'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers"
]
)