-
Notifications
You must be signed in to change notification settings - Fork 436
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 859 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "pysip-simple"
description = "Lightweight SIP framework based on belle-sip"
readme = "python/README.md"
license = "GPL-3.0-or-later"
dynamic = ["version"]
requires-python = ">= 3.13"
dependencies = [
"aiohttp >= 3.11",
]
authors = [
{name = "Richard Fuchs", email = "rfuchs@sipwise.com"},
]
maintainers = [
{name = "Richard Fuchs", email = "rfuchs@sipwise.com"},
]
[tool.hatch.version]
path = "python/pysip_lite/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["python/pysip_lite"]
exclude = [".gitignore"]
artifacts = ["python/src/*.so"]
[tool.black]
# Match line-length expected by pycodestyle.
line-length = 79
# Current version in Debian trixie.
target-version = ['py313']
# Enable preview features, expected by pycodestyle.
preview = true