-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 963 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
30
31
32
33
34
35
"""Package setup"""
from setuptools import setup, find_packages
import sys
VERSION = '0.0.3'
INSTALL_REQUIRES = [
'matplotlib>=2.2.3',
'numpy>=1.15.1',
'scipy>=1.1.0',
'scikit-learn>=0.19.2',
]
setup(
name='mlplot',
version=VERSION,
packages=find_packages(),
license='MIT License',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/sbarton272/mlplot',
author='sbarton272',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=INSTALL_REQUIRES,
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)