Skip to content

Commit 431c078

Browse files
committed
Add code used to push to PyPI
1 parent a99dc72 commit 431c078

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal = 1
3+
4+
[metadata]
5+
description-file = README.md

setup.py

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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

Comments
 (0)