Skip to content

Commit 3de96f0

Browse files
committed
Preparing release 1.0.2 (PyPI is not easy)
1 parent 30c577d commit 3de96f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
from distutils.core import setup
1+
from setuptools import setup
22

33
def read( path ):
4-
with open( path, 'r' ) as f:
4+
with open(path, 'r') as f:
55
return f.read()
66

77
setup(
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',

0 commit comments

Comments
 (0)