forked from kascodeo/python-opc-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 828 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
[project]
name = "python-opc-lite"
version = "0.0.2"
description = ""
authors = [
{name = "Michael Holschbach", email = "mholschbach@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lxml (>=5.3.2,<6.0.0)",
"lxml-util (>=1.0.2,<2.0.0)",
]
[tool.poetry]
packages = [{include = "src"}]
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
mypy = "^1.19.1"
ruff = "^0.15.5"
tox = "^4.49.1"
types-lxml = "^2026.2.16"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
#requires = ["poetry-core>=2.0.0,<3.0.0"]
#build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.mypy]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [ "lxmlutil.etree" ]
follow_untyped_imports = true