-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 983 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 983 Bytes
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
[tool.poetry]
name = "symnet-cp"
version = "0.6.0"
description = "SymNet External Control Protocol implementation"
authors = ["Christian Kohlstedde <christian@kohlsted.de>"]
license = "MIT"
readme = "README.md"
keywords = ["Symetrix", "SymNet", "Solus"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Natural Language :: German",
]
[tool.poetry.dependencies]
python = "^3.11"
attrs = "^25.3.0"
prometheus-client = "^0.21.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
black = "^25.1.0"
pytest-aio = "^1.9.0"
pytest-mockservers = "^0.6.0"
pytest-cov = "^6.0.0"
flake8 = "^7.2.0"
pytest-sugar = "^1.0.0"
isort = "^6.0.1"
pep8-naming = "^0.14.1"
tomli = "^2.2.1"
[build-system]
requires = ["poetry-core>=2.1.2"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py311']
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.coverage.run]
branch = true