-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 871 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
24
25
26
from distutils.core import setup
setup(
name = 'PyML',
packages = ['pyml'],
version = '0.2.2',
description = 'Machine Learning algorithms in Python',
author = 'Rohith PR',
author_email = '[email protected]',
url = 'https://github.com/rohithpr/PyML',
download_url = 'https://github.com/rohithpr/PyML/tarball/0.2.2',
keywords = ['machine learning'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering',
],
)