version -> 1.4.1
parent
7a183c4e3c
commit
110acc9e00
5
setup.py
5
setup.py
|
@ -3,7 +3,7 @@ import codecs
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
VERSION = '1.4'
|
VERSION = '1.4.1'
|
||||||
AUTHOR_NAME = 'Andy Port'
|
AUTHOR_NAME = 'Andy Port'
|
||||||
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
|
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
|
||||||
|
|
||||||
|
@ -24,15 +24,14 @@ setup(name='svgpathtools',
|
||||||
description=('A collection of tools for manipulating and analyzing SVG '
|
description=('A collection of tools for manipulating and analyzing SVG '
|
||||||
'Path objects and Bezier curves.'),
|
'Path objects and Bezier curves.'),
|
||||||
long_description=read("README.md"),
|
long_description=read("README.md"),
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author=AUTHOR_NAME,
|
author=AUTHOR_NAME,
|
||||||
author_email=AUTHOR_EMAIL,
|
author_email=AUTHOR_EMAIL,
|
||||||
url='https://github.com/mathandy/svgpathtools',
|
url='https://github.com/mathandy/svgpathtools',
|
||||||
# download_url = 'http://github.com/mathandy/svgpathtools/tarball/'+VERSION,
|
# download_url = 'http://github.com/mathandy/svgpathtools/tarball/'+VERSION,
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
|
||||||
install_requires=['numpy', 'svgwrite'],
|
install_requires=['numpy', 'svgwrite'],
|
||||||
platforms="OS Independent",
|
platforms="OS Independent",
|
||||||
# test_suite='tests',
|
|
||||||
requires=['numpy', 'svgwrite'],
|
requires=['numpy', 'svgwrite'],
|
||||||
keywords=['svg', 'svg path', 'svg.path', 'bezier', 'parse svg path', 'display svg'],
|
keywords=['svg', 'svg path', 'svg.path', 'bezier', 'parse svg path', 'display svg'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Loading…
Reference in New Issue