-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "nisystemlink-examples"
version = "0.1.1"
description = "NI SystemLink examples and demo utilities"
authors = ["National Instruments"]
maintainers = [
"Adam Arnesen <adam.arnesen@emerson.com>",
"TJ Giere <tj.giere@emerson.com>",
]
readme = "README.md"
keywords = ["nisystemlink", "systemlink"]
license = "MIT"
packages = [
{include = "nisystemlink_examples"}
]
[tool.poetry.dependencies]
python = "^3.10"
nisystemlink-clients = "^2.31.0"
requests = "^2.32.5"
urllib3 = "^2.6.0"
[tool.poetry.group.dev.dependencies]
black = ">=24,<27"
flake8 = "^7.3.0"
flake8-docstrings = "^1.7.0"
flake8-import-order = "^0.19.2"
pytest = "^9.0.1"
mypy = "^1.15.0"
poethepoet = "^0.38.0"
types-requests = "^2.32.4.20250913"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"]
major_on_zero = true
tag_format = "v{version}"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true
[tool.semantic_release.branches.main]
match = "(main|master)"
[tool.poe.tasks]
test = "pytest tests"
lint = "flake8 nisystemlink_examples tests"
check = "black --check nisystemlink_examples tests"
format = "black nisystemlink_examples tests"
types = "mypy nisystemlink_examples tests"