-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 901 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "align-browser"
dynamic = ["version"]
description = "Static web application for visualizing ADM results"
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"pydantic",
"waitress"
]
[project.scripts]
align-browser = "align_browser.build:main"
[tool.setuptools.dynamic]
version = {attr = "align_browser.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["align_browser*"]
[tool.setuptools.package-data]
align_browser = ["*.py", "static/*"]
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools]
include-package-data = true
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"ruff>=0.12.1",
"playwright>=1.40.0",
"pytest-playwright>=0.4.0",
"pytest-asyncio>=0.21.0",
"pytest-xdist>=3.8.0",
"filelock>=3.18.0",
]