-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
45 lines (36 loc) · 1.11 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
from setuptools import setup, find_packages
with open("plottie/version.py", "r") as f:
exec(f.read())
setup(
name="plottie",
version=__version__,
packages=find_packages(),
# Metadata for PyPi
url="https://github.com/mossblaser/plottie",
author="Jonathan Heathcote",
description="Command-line software for plotting and cutting using Silhouette devices.",
license="LGPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
],
keywords="svg plotter cutter silhouette",
install_requires=[
"svgoutline",
"py_silhouette>=0.3.1",
"attrs",
"toposort",
"enum34",
],
entry_points={
"console_scripts": [
"plottie = plottie.cli:main",
],
}
)