-
Notifications
You must be signed in to change notification settings - Fork 249
/
setup.py
41 lines (35 loc) · 1.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
""" MLROSe setup file."""
# Author: Genevieve Hayes
# License: BSD 3 clause
from setuptools import setup
def readme():
"""
Function to read the long description for the MLROSe package.
"""
with open('README.md') as _file:
return _file.read()
setup(name='mlrose',
version='1.3.0',
description="MLROSe: Machine Learning, Randomized Optimization and"
+ " Search",
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/gkhayes/mlrose',
author='Genevieve Hayes',
license='BSD',
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"],
packages=['mlrose'],
install_requires=['numpy', 'scipy', 'scikit-learn'],
python_requires='>=3',
zip_safe=False)