-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (48 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
61 lines (48 loc) · 1.28 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
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "pyalab"
version = "0.2.6"
description = "Generating programs for Vialab to control an Integra Assist Plus liquid handling robot"
authors = [
{name = "Eli Fine"},
]
readme = "README.md"
requires-python = ">=3.12.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pydantic>=2.12.5",
"inflection>=0.5.1",
"lxml>=6.0.2",
]
[dependency-groups]
dev = [
# Specific to this repository
"lxml-stubs>=0.5.1",
"syrupy>=5.1.0",
"pytest-mock>=3.15.1",
"faker>=40.11.0",
"autodoc_pydantic==2.2.0",
# Managed by upstream template
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"pytest-randomly>=4.0.1",
"sphinx==9.0.4",
]
[tool.setuptools]
license-files = [] # kludge until this bug is fixed https://github.com/pypa/setuptools/issues/4759
package-data = {"pyalab" = ["vendor_files/**/*.xml"]}
[tool.uv]
package = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"