-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
79 lines (70 loc) · 1.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "contactsoftware-functions"
dynamic = ["version"]
description = "Library for creating Functions for CIM Database Cloud."
authors = [
{ name = "Julian Alberts", email = "jal@contact.de" },
{ name = "Jens Kürten", email = "jku@contact.de" },
]
requires-python = "~=3.10"
readme = "README.md"
license = "MIT"
dependencies = [
"requests>=2.27.1,<3",
"pydantic>=2.3,<3",
"pyyaml>=6.0.2,<7",
"werkzeug>=3.1.3,<4",
]
[project.urls]
Repository = "https://github.com/cslab/functions-sdk-python"
Documentation = "https://cslab.github.io/functions-sdk-python/"
[dependency-groups]
test = [
"pytest>=8.3.4,<9",
"requests-mock>=1.12.1,<2",
]
dev = [
"mkdocs>=1.6.1,<2",
"mkdocs-material>=9.6.14,<10",
"mkdocs-link-marker>=0.1.3,<0.2",
"types-requests>=2.32.4.20250809,<3",
"types-pyyaml>=6.0.12.20250822,<7",
"setuptools-scm>=9.2.2",
]
[tool.uv]
default-groups = [
"test",
"dev",
]
[build-system]
requires = [
"setuptools>=68",
"setuptools-scm>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# Explicitly list your top-level packages
packages = ["csfunctions"]
[tool.setuptools_scm]
# Optional: if your git tags are like "v1.2.3", tell SCM to strip the 'v'
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]