-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (58 loc) · 1.41 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=8.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "seguin_loom_server"
dynamic = ["version"]
description = "Web server that drives a Séguin dobby loom"
readme = "README.md"
dependencies = [
"fastapi >= 0.115",
"dtx_to_wif >= 3.0",
"pyserial-asyncio >= 0.6",
]
authors = [
{ name="Russell Owen", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pre-commit >= 3.8",
"pytest >= 8.3",
"pytest-asyncio >= 0.24",
]
# Needed due to including package data below
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"seguin_loom_server" = [
"py.typed",
"display.css",
"display.html_template",
"display.js",
"favicon-32x32.png"
]
[project.scripts]
run_seguin_loom = "seguin_loom_server.main:run_seguin_loom"
[project.urls]
Homepage = "https://github.com/r-owen/seguin_loom_server"
Issues = "https://github.com/r-owen/seguin_loom_server/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.isort]
profile = "black"
[tool.setuptools_scm]
write_to = "src/seguin_loom_server/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""