forked from mapio/GraphvizAnim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 766 Bytes
/
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
from setuptools import setup
def read( path ):
with open(path, 'r') as f:
return f.read()
setup(
name = 'GraphvizAnim',
version = '1.1.0',
description = 'A tool to create animated graph visualizations, based on graphviz',
long_description = read('README.md'),
long_description_content_type='text/markdown',
author = 'Massimo Santini',
author_email = 'santini@di.unimi.it',
url = 'https://github.com/mapio/GraphvizAnim',
license = 'GNU/GPLv3',
packages = ['gvanim'],
keywords = 'drawing graph animation',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: Unix',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)