-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.08 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
[project]
name = "pyalab"
version = "0.1.1"
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",
]
dependencies = [
"pydantic>=2.10.3",
"inflection>=0.5.1",
"lxml>=5.3.0", # as of 2024-12-20, Python3.13 does not appear to support lxml
]
[dependency-groups]
dev = [
# Specific to this template
"lxml-stubs>=0.5.1",
"syrupy>=4.8.0",
"pytest-mock>=3.14.0",
"faker>=31.1.0",
"autodoc_pydantic==2.2.0",
# Managed by upstream template
"pyright>=1.1.391",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"pytest-randomly>=3.16.0",
"sphinx==8.1.3",
]
[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/"