-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 970 Bytes
/
pyproject.toml
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
[project]
name = "pifacedigital-web-api"
version = "0.4.0"
authors = [
{ name="Erik Petersen", email="[email protected]" },
]
description = "Web API for interacting with the PiFace Digital expansion board on Raspberry Pi, written in Python using Flask and Flask-RESTful."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask",
"flask-restful",
"pifacecommon",
"pifacedigitalio",
"waitress"
]
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = [
".gitignore",
".flake8",
"LICENSE.txt",
"Makefile",
"requirements-dev.txt",
"requirements.txt",
"etc/",
"tests/",
]
[tool.flit.external-data]
directory = "systemd"
[project.scripts]
pifacedigital-web-api = "pifacedigital_web_api.__init__:main"