forked from tensorbored/kds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.12 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='kds',
version='0.1.3',
description='An intuitive library to plot evaluation metrics.',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
url='https://github.com/tensorbored/kds',
author='Prateek Sharma',
author_email='[email protected]',
license='MIT License',
platforms='any',
classifiers=classifiers,
keywords='keytodatascience',
packages=['kds'],
install_requires=[
'matplotlib>=1.4.0',
'pandas>=0.20.0',
'numpy>=1.12.0'
],
# entry_points={
# "console_scripts": [
# "kds=kds.__main__:main", # if library name is keytodatascience then we can shorten it using this
# ]
# }
)