-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
55 lines (49 loc) · 1.94 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: IronPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: MicroPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Stackless",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Software Development :: Libraries :: Python Modules",
]
KEYWORDS = ["svg", "image", "simple"]
INSTALL_REQUIRES = [
'svgutils',
'mpmath',
'ensure'
]
with open('README.rst') as f:
long_description = f.read()
setuptools.setup(
name='svgmanip',
version='0.0.12',
py_modules=['svgmanip'],
url='https://github.com/CrazyPython/svgmanip',
license='Apache 2.0',
description='`svgmanip` helps import and composite together existing SVG drawings. More information is available at the GitHub README.',
long_description=long_description,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
keywords=KEYWORDS,
packages=setuptools.find_packages(),
)