Fix setup.py
parent
9b3d6fe5e3
commit
46dffa3aa5
6
setup.py
6
setup.py
|
@ -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'],
|
||||
|
|
Loading…
Reference in New Issue