Skip to content

Commit

Permalink
Preparing release 1.0.2 (PyPI is not easy)
Browse files Browse the repository at this point in the history
  • Loading branch information
mapio committed May 21, 2018
1 parent 30c577d commit 3de96f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
from distutils.core import setup
from setuptools import setup

def read( path ):
with open( path, 'r' ) as f:
with open(path, 'r') as f:
return f.read()

setup(
name = 'GraphvizAnim',
version = '1.0.1',
version = '1.0.2',
description = 'A tool to create animated graph visualizations, based on graphviz',
long_description = read( 'README.md' ),
long_description = read('README.md'),
long_description_content_type='text/markdown',
author = 'Massimo Santini',
author_email = '[email protected]',
url = 'https://github.com/mapio/GraphvizAnim',
license = 'GNU/GPLv3',
packages = [ 'gvanim' ],
packages = ['gvanim'],
keywords = 'drawing graph animation',
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 3de96f0

Please sign in to comment.