svgpathtools/setup.py

26 lines
835 B
Python
Raw Normal View History

2016-07-06 04:51:11 +00:00
from distutils.core import setup
2016-07-24 00:18:08 +00:00
VERSION = '1.2.1'
2016-07-06 04:51:11 +00:00
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezier curves.'),
2016-07-06 06:02:28 +00:00
# long_description=open('README.rst').read(),
2016-07-06 04:51:11 +00:00
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
url='https://github.com/mathandy/svgpathtools',
2016-07-06 06:02:28 +00:00
download_url = 'http://github.com/mathandy/svgpathtools/tarball/' + VERSION,
2016-07-06 04:51:11 +00:00
license='MIT',
# install_requires=['numpy', 'svgwrite'],
platforms="OS Independent",
# test_suite='tests',
requires=['numpy', 'svgwrite'],
keywords=['svg', 'bezier', 'svg.path'],
classifiers = [],
)