-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.36 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
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "openprotocol-atlascopco"
version = "0.1.0"
description = "Python library for Open Protocol communication from Atlas Copco (e.g., tightening systems)"
requires-python = ">=3.12,<4.0"
license = { text = "MIT" }
authors = [
{ name = "Tomas Krcka, Industware s.r.o, 2025", email = "tomas.krcka@industware.cloud" }
]
keywords = ["openprotocol", "industrial", "tightening", "communication", "atlascopco"]
dependencies = ["poetry-core (>=2.0.0)"]
[project.urls]
Homepage = "https://github.com/Industware-cloud/openprotocol-python"
Repository = "https://github.com/Industware-cloud/openprotocol-python"
Issues = "https://github.com/Industware-cloud/openprotocol-python"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
# Poetry compatibility section
[tool.poetry]
name = "openprotocol-atlascopco"
version = "0.1.0"
description = "Python library for Open Protocol communication (e.g., tightening systems)"
authors = ["Tomas Krcka <tomas.krcka@industware.cloud>"]
license = "MIT"
packages = [{ include = "openprotocol", from = "src" }]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.6"
ruff = "^0.13.0"
mypy = "^1.10.0"
pre-commit = "^3.7.0"