forked from leotac/joypy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 813 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 813 Bytes
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 setuptools import setup
setup(name='joypy',
version='0.2.1',
description='Joyplots in python',
long_description='Joyplots in python.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Visualization',
],
url='http://github.com/sbebo/joypy',
author='Leonardo Taccari',
author_email='leonardo.taccari@gmail.com',
license='MIT',
packages=['joypy'],
install_requires=[
'matplotlib',
'numpy',
'scipy>=0.11.0',
'pandas>=0.20.0'
],
zip_safe=False)