forked from pog87/PtitPrince
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.18 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
from setuptools import find_packages, setup
setup(name='ptitprince',
version='0.2.6',
description='A Python implementation of Rainclouds, originally on R, ggplot2. Written on top of seaborn.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/pog87/PtitPrince',
author='Davide Poggiali',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
platform='any',
keywords=[
'data visualization',
'raincloud plots',
],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
install_requires=[
'matplotlib',
'numpy>=1.16',
'scipy',
'seaborn==0.11',
],
zip_safe=False)