-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
35 lines (32 loc) · 1.15 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
from setuptools import setup
DESCRIPTION = "Beeswarm plots for python"
LONG_DESCRIPTION = DESCRIPTION
NAME = "pybeeswarm"
AUTHOR = "Melissa Gymrek"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "Melissa Gymrek"
MAINTAINER_EMAIL = "[email protected]"
DOWNLOAD_URL = 'https://github.com/mgymrek/pybeeswarm'
LICENSE = 'MIT'
VERSION = '1.0.0'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=['beeswarm'],
package_dir={'beeswarm': 'beeswarm'},
install_requires=['matplotlib','numpy','pandas'],
classifiers=['Development Status :: 4 - Beta',\
'Programming Language :: Python :: 2.7',\
'License :: OSI Approved :: MIT License',\
'Operating System :: OS Independent',\
'Intended Audience :: Science/Research',\
'Topic :: Scientific/Engineering :: Visualization']
)