-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 993 Bytes
/
setup.py
File metadata and controls
40 lines (37 loc) · 993 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license_file = f.read()
setup(
name="Plotter Tools",
version="0.1.0",
description="Misc. utilities for plotter",
long_description=readme,
long_description_content_type="text/markdown",
author="Antoine Beyeler",
url="https://github.com/abey79/plottertools",
license=license_file,
packages=["raxicli"],
install_requires=[
"attrs",
"click",
"fabric",
"pyserial",
"toml",
"tqdm",
"urwid",
"matplotlib",
"python-rtmidi",
"mido",
"numpy",
"watchgod",
"vpype @ git+https://github.com/abey79/vpype",
"pyaxidraw @ https://cdn.evilmadscientist.com/dl/ad/public/AxiDraw_API.zip",
],
entry_points="""
[console_scripts]
raxicli=raxicli.raxicli:main
serialwrite=serialwrite.serialwrite:serialwrite
""",
)