-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (53 loc) · 1.35 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
[project]
name = "sila_cetoni_controllers"
description = "SiLA 2 implementations for CETONI controller devices"
readme = "README.md"
dynamic = ["version"]
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",
"sila2[codegen]==0.10.1",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
]
# [project.scripts]
# sila-cetoni = "sila_cetoni.controllers:main"
[project.urls]
"Homepage" = "https://cetoni.de/cobomation/#sila"
"SiLA Standard" = "https://sila-standard.org"
# dynamic version from git
[tool.setuptools_scm]
# include timestamp for dirty workdir versions
local_scheme = "node-and-timestamp"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.package-data]
"*" = ["*.sila.xml"]
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
src_paths = ["../../sila_cetoni"]