-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 855 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 855 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
import pathlib
import setuptools
readme = (pathlib.Path(__file__).parent / "README.md").read_text(encoding="utf-8")
setuptools.setup(
name="taxi",
version="0.1.0a0",
description="Opinionated Axidraw interface",
long_description=readme,
long_description_content_type="text/markdown",
author="Antoine Beyeler",
author_email="[email protected]",
url="https://github.com/plottertools/taxi",
license="MIT",
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8,<3.10",
package_data={"taxi": ["*.kv", "*.json"]},
install_requires=[
"numpy>=1.19",
"setuptools",
"kivy>=2.0.0",
"vpype>=1.7.0",
"pyaxidraw @ https://cdn.evilmadscientist.com/dl/ad/public/AxiDraw_API.zip",
"watchgod>=0.7",
"aiohttp",
"Pillow",
],
)