-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.04 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
[build-system]
requires = ["setuptools>64", "wheel", "pip>=22"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
flowchem_test = ["py.typed"]
[project]
name = "flowchem-test"
version = "0.1b4"
description = "Add support for test devices in flowchem."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["chemistry", "automation", "laboratory", "testing"]
authors = [
{ name = "Dario Cambié", email = "[email protected]" },
]
maintainers = [
{ name = "Dario Cambié", email = "[email protected]" }
]
classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = [
"flowchem",
]
[project.optional-dependencies]
dev = [
"mypy",
"black",
"ruff",
]
[project.urls]
repository = "https://github.com/cambiegroup/flowchem-test"
[project.entry-points."flowchem.devices"]
test-device = "flowchem_test.fakedevice"
[tool.ruff]
line-length = 120