-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.12 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 = "ot2_module"
version = "3.0.0"
description = "MADSci node module for Opentrons OT-2 and Flex liquid handlers"
authors = [
{name = "Ryan D. Lewis", email="ryan.lewis@anl.gov"},
{name = "Doga Ozgulbas", email="dozgulbas@anl.gov"},
{name = "Abe Stroka", email="astroka@anl.gov"},
{name = "Tobias Ginsburg", email = "tginsburg@anl.gov"},
]
dependencies = [
"madsci.node_module~=0.7",
"madsci.client~=0.7",
"madsci.common~=0.7",
"pandas",
"openpyxl>=3.1.5",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.urls]
homepage = "https://github.com/AD-SDL/ot2_module"
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"ipykernel>=6.29.5",
"pydantic-settings-export>=1.0.3",
]
[tool.pydantic_settings_export]
project_dir = "."
default_settings = [
"ot2_rest_node:OT2NodeConfig",
]
[[tool.pydantic_settings_export.generators.markdown]]
paths = ["docs/Configuration.md"]
[[tool.pydantic_settings_export.generators.dotenv]]
paths = [".env.example"]
[tool.pdm]
distribution = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"