Fix setup.py

pull/4/head
Andy 2016-07-05 23:02:28 -07:00
parent 9b3d6fe5e3
commit 46dffa3aa5
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
from distutils.core import setup
VERSION = '1.0'
VERSION = '1.0.1'
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
@ -9,11 +9,11 @@ setup(name='svgpathtools',
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezier curves.'),
long_description=open('README.rst').read(),
# long_description=open('README.rst').read(),
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
url='https://github.com/mathandy/svgpathtools',
download_url = 'http://github.com/mathandy/svgpathtools/tarball/1.0',
download_url = 'http://github.com/mathandy/svgpathtools/tarball/' + VERSION,
license='MIT',
# install_requires=['numpy', 'svgwrite'],