-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.14 KB
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
[project]
name = "drybox"
version = "0.1.0"
description = "Logical phone call emulator, designed to design the Nade protocol"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography>=45.0.7",
"jsonschema>=4.25.1",
"numpy>=2.3.3",
"platformdirs>=4.0.0",
"pyside6>=6.9.0",
"pyyaml>=6.0.2",
"dissononce>=0.34.3",
"cffi>=1.17.0",
"pyqtgraph>=0.13.0",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=6.2.1",
]
gui = [
"PySide6>=6.0.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
py-modules = [] # prevent top-level .py files from being packaged as modules
[tool.setuptools.packages.find]
include = ["drybox*", "adapters*"] # include example adapters if you keep them top-level
exclude = ["runs*", "docs*", "tests*"]
[tool.setuptools.package-data]
drybox = [
"scenarios/*.yaml",
"schema/*.json",
"WAV/*"
]
[project.scripts] # optional sugar so you can do `uv run drybox` / `uv run drybox-qt`
drybox = "drybox.ui.__main__:main"
drybox-run = "drybox.core.runner:main"