|  | 
|  | 1 | +from distutils.core import setup | 
|  | 2 | + | 
|  | 3 | +CLASSIFIERS = [ | 
|  | 4 | + "Development Status :: 5 - Production/Stable", | 
|  | 5 | + "Intended Audience :: Developers", | 
|  | 6 | + "Natural Language :: English", | 
|  | 7 | + "License :: OSI Approved :: Apache Software License", | 
|  | 8 | + "Operating System :: OS Independent", | 
|  | 9 | + "Programming Language :: Python", | 
|  | 10 | + "Programming Language :: Python :: 2", | 
|  | 11 | + "Programming Language :: Python :: 2.7", | 
|  | 12 | + "Programming Language :: Python :: 3", | 
|  | 13 | + "Programming Language :: Python :: 3.3", | 
|  | 14 | + "Programming Language :: Python :: 3.4", | 
|  | 15 | + "Programming Language :: Python :: 3.5", | 
|  | 16 | + "Programming Language :: Python :: Implementation :: CPython", | 
|  | 17 | + "Programming Language :: Python :: Implementation :: IronPython", | 
|  | 18 | + "Programming Language :: Python :: Implementation :: Jython", | 
|  | 19 | + "Programming Language :: Python :: Implementation :: MicroPython", | 
|  | 20 | + "Programming Language :: Python :: Implementation :: PyPy", | 
|  | 21 | + "Programming Language :: Python :: Implementation :: Stackless", | 
|  | 22 | + "Topic :: Multimedia :: Graphics :: Editors :: Vector-Based", | 
|  | 23 | + "Topic :: Software Development :: Libraries :: Python Modules", | 
|  | 24 | +] | 
|  | 25 | + | 
|  | 26 | +KEYWORDS = ["svg", "image", "simple"] | 
|  | 27 | + | 
|  | 28 | +INSTALL_REQUIRES = [ | 
|  | 29 | + 'svgutils', | 
|  | 30 | + 'mpmath', | 
|  | 31 | + 'ensure' | 
|  | 32 | +] | 
|  | 33 | + | 
|  | 34 | +setup( | 
|  | 35 | + name='svgmanip', | 
|  | 36 | + version='0.0.1', | 
|  | 37 | + py_modules=['svgmanip'], | 
|  | 38 | + url='https://github.com/CrazyPython/svgmanip', | 
|  | 39 | + license='Apache 2.0', | 
|  | 40 | + author='James Lu', | 
|  | 41 | + author_email='james@avertly.co', | 
|  | 42 | + description='A simple library for programmatically generating SVGs.', | 
|  | 43 | + classifiers=CLASSIFIERS, | 
|  | 44 | + install_requires=INSTALL_REQUIRES, | 
|  | 45 | + keywords=KEYWORDS, | 
|  | 46 | +) | 
0 commit comments