-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 950 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
44
45
46
47
48
[project]
name = "ravelights"
version = "0.1.0"
requires-python = "~=3.10"
dependencies = [
"numpy == 1.26.3",
"plum-py == 0.8.5",
"Flask == 2.3.3",
"Flask-RESTful == 0.3.10",
"flask-socketio == 5.3.6",
"requests == 2.31.0",
"zeroconf == 0.128.0",
"loguru == 0.7.2",
]
[project.optional-dependencies]
dev = [
"pytest == 7.4.4",
"pytest-flask == 1.3.0",
"mypy == 1.8.0",
"ruff >= 0.1.13",
]
gui = [
"pygame == 2.5.2",
]
serial = [
"pyserial == 3.5.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
# include package data
# https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
# include all files, this is also the default
"*" = ["*"]
[build-system]
requires = ["setuptools>=42.0", "wheel", "pip >= 21.1"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
target-version = "py311"