-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 938 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 938 Bytes
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
import setuptools
setuptools.setup(
name="sympathor",
version="0.0.1",
description="sympathor - A Python package to yield symbolic path descriptions from SVGs.",
license="MIT",
author="Armin Steinhauser",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
keywords="svg symbolic path arc parametrization frenet automatic differentiation",
url="https://github.com/asteinh/sympathor",
packages=setuptools.find_packages(),
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering",
],
python_requires='>=3.6',
)