-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
51 lines (44 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robotools"
version = "1.15.0"
description = "Pythonic in-silico liquid handling and creation of Tecan FreedomEVO worklists."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GNU Affero General Public License v3"}
authors = [
{name = "Michael Osthege", email = "m.osthege@fz-juelich.de"},
]
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"typing_extensions",
]
[project.urls]
Homepage = "https://github.com/jubiotech/robotools"
Documentation = "https://robotools.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/robotools/"
[tool.setuptools]
package-dir = {"robotools" = "robotools"}
[tool.setuptools.package-data]
"robotools" = ["py.typed"]
[tool.black]
line-length = 110
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
exclude = [
'test_.*?\.py$',
]