From 3de96f0be01e5bb6aed84aacebfa5a94fd9e6429 Mon Sep 17 00:00:00 2001 From: Massimo Santini Date: Mon, 21 May 2018 10:37:31 +0200 Subject: [PATCH] Preparing release 1.0.2 (PyPI is not easy) --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9ffe87d..588d143 100644 --- a/setup.py +++ b/setup.py @@ -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 = 'santini@di.unimi.it', url = 'https://github.com/mapio/GraphvizAnim', license = 'GNU/GPLv3', - packages = [ 'gvanim' ], + packages = ['gvanim'], keywords = 'drawing graph animation', classifiers = [ 'Development Status :: 5 - Production/Stable',