File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- from distutils . core import setup
1+ from setuptools import setup
22
33def read ( path ):
4- with open ( path , 'r' ) as f :
4+ with open (path , 'r' ) as f :
55 return f .read ()
66
77setup (
88 name = 'GraphvizAnim' ,
9- version = '1.0.1 ' ,
9+ version = '1.0.2 ' ,
1010 description = 'A tool to create animated graph visualizations, based on graphviz' ,
11- long_description = read ( 'README.md' ),
11+ long_description = read ('README.md' ),
1212 long_description_content_type = 'text/markdown' ,
1313 author = 'Massimo Santini' ,
1414 author_email = '[email protected] ' ,
1515 url = 'https://github.com/mapio/GraphvizAnim' ,
1616 license = 'GNU/GPLv3' ,
17- packages = [ 'gvanim' ],
17+ packages = ['gvanim' ],
1818 keywords = 'drawing graph animation' ,
1919 classifiers = [
2020 'Development Status :: 5 - Production/Stable' ,
You can’t perform that action at this time.
0 commit comments