forked from sepandhaghighi/pycm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (29 loc) · 955 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
27
28
29
from distutils.core import setup
setup(
name = 'pycm',
packages = ['pycm'],
version = '0.1',
description = 'Confusion Matrix In Python',
long_description='Confusion Matrix In Python',
author = 'Sepand Haghighi',
author_email = 'sepand@qpage.ir',
url = 'https://github.com/sepandhaghighi/pycm',
download_url = 'https://github.com/sepandhaghighi/pycm/tarball/v0.1',
keywords = ['confusion-matrix', 'python3','python','machine learning','ML'],
install_requires=[
'codecov',
'art',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: Fonts',
],
license='MIT',
)