-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (39 loc) · 1.53 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
37
38
39
40
41
42
43
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='pyAlluv',
# version='0.1',
# ####################################################################
# ####################################################################
use_scm_version={'write_to': 'docs/version.txt'},
setup_requires=['setuptools_scm'],
# ####################################################################
# ####################################################################
description='Drawing alluvial plots in matplotlib.',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License 3',
'Programming Language :: Python :: 3.6',
'Topic :: Visualisation :: Alluvial Diagram',
],
keywords='alluvial cluster community classification temporal',
url='https://github.com/j-i-l/pyAlluv',
author='Jonas I. Liechti [aut, cre]',
author_email='jonas.i.liechti@gmail.com',
license='GPL-3',
packages=['pyalluv'],
install_requires=[
'matplotlib',
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
# ToDo:
# entry_points={
# 'console_scripts': ['draw-alluvial=pyalluv.command_line:main'],
# },
include_package_data=True,
zip_safe=False
)