-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "sila_cetoni"
version = "1.8.0"
description = "SiLA 2 implementations for CETONI devices"
dynamic = ["readme"] # comes from setup.py # readme = "README.md"
authors = [
{ name = "CETONI GmbH", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"coloredlogs",
"flask",
"jsonschema",
# only for debugging the AxisSystemPositionController's positioning shape
# matplotlib
# most recent numpy has an issue with fmod on Windows 10 (2004)
# see https://developercommunity.visualstudio.com/t/fmod-after-an-update-to-windows-2004-is-causing-a/1207405
"numpy==1.19.3",
"pyserial",
"requests",
"shapely",
"sila2[codegen]==0.10.1",
"typer",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
]
[project.scripts]
sila-cetoni = "sila_cetoni.application.__main__:app"
[project.urls]
"Homepage" = "https://cetoni.de/cobomation/#sila"
"SiLA Standard" = "https://sila-standard.org"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.package-data]
"*" = ["*.sila.xml"]
"sila_cetoni.application.resources" = ["configuration_schema.json"]
[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"