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 setuptools import setup
setup(name='joypy',
version='0.2.6',
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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Visualization',
],
url='http://github.com/leotac/joypy',
author='Leonardo Taccari',
author_email='leonardo.taccari@gmail.com',
license='MIT',
packages=['joypy'],
python_requires='>=3.5',
install_requires=[
'numpy>=1.16.5',
'scipy>=0.11.0',
'pandas>=0.20.0',
'matplotlib',
],
zip_safe=False)
|