svgpathtools/setup.py

55 lines
2.0 KiB
Python
Raw Normal View History

from setuptools import setup
import codecs
import os
2016-07-06 04:51:11 +00:00
VERSION = '1.3.2beta'
2016-07-06 04:51:11 +00:00
AUTHOR_NAME = 'Andy Port'
AUTHOR_EMAIL = 'AndyAPort@gmail.com'
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
HERE = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f:
return f.read()
2016-07-06 04:51:11 +00:00
setup(name='svgpathtools',
packages=['svgpathtools'],
version=VERSION,
description=('A collection of tools for manipulating and analyzing SVG '
'Path objects and Bezier curves.'),
long_description=read("README.rst"),
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',
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'],
2016-07-24 00:29:22 +00:00
keywords=['svg', 'svg path', 'svg.path', 'bezier', 'parse svg path', 'display svg'],
2016-10-05 23:53:28 +00:00
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
2016-07-06 04:51:11 +00:00
)