-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.18 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
import setuptools
with open("./README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="learning-curves",
version="0.3.0",
author="H4dr1en",
author_email="[email protected]",
description="Python module allowing to easily calculate and plot the learning curve of a machine learning model and find the maximum expected accuracy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/H4dr1en/learning-curves",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research'
],
license='MIT',
download_url = 'https://github.com/H4dr1en/learning-curves/archive/0.3.0.tar.gz',
keywords = ['Learning', 'curve', 'machine', 'learning', 'saturation', 'accuracy'],
install_requires=[
'dill',
'numpy',
'sklearn',
'scipy',
'matplotlib'
],
)