File: pyproject.toml

package info (click to toggle)
python-requests-unixsocket 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: python: 316; sh: 23; makefile: 14
file content (82 lines) | stat: -rw-r--r-- 1,937 bytes parent folder | download
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
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "requests-unixsocket2"
version = "1.0.1"
description = "Use requests to talk HTTP via a UNIX domain socket"
readme = "README.md"
classifiers = [
    "Intended Audience :: Developers",
    "Intended Audience :: Information Technology",
    "License :: OSI Approved :: ISC License (ISCL)",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
]
dependencies = ["requests (>=2.32.3,<3)", "urllib3 (>=2.4.0,<3.0)"]
requires-python = ">=3.9"

[project.license]
text = "ISC"

[[project.authors]]
name = "thelab"
email = "thelabdev@thelab.co"

[project.urls]
Homepage = "https://gitlab.com/thelabnyc/requests-unixsocket2"
Repository = "https://gitlab.com/thelabnyc/requests-unixsocket2"

[dependency-groups]
dev = [
    "coverage[toml] (>=7.8.0,<8)",
    "ruff (>=0.11.6)",
    "pytest (>=8.3.5,<9)",
    "waitress (>=3.0.2,<4)",
    "mypy (>=1.15.0,<2)",
    "types-requests (>=2.32.0.20240521,<3)",
    "types-waitress (>=3.0.0.20240423,<4)",
    "tox>=4.27.0",
    "tox-uv>=1.26.1",
]

[tool.hatch.build.targets.wheel]
packages = ["requests_unixsocket"]

[tool.mypy]
python_version = "3.8"

[tool.pytest.ini_options]
addopts = "--tb=short"


[tool.isort]
profile = "black"
from_first = true

[tool.ruff.lint.isort]
from-first = true

[tool.coverage.run]
branch = true
source_pkgs = ["requests_unixsocket"]

[tool.coverage.report]
show_missing = true
ignore_errors = true


[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = true
tag_format = "v$version"
update_changelog_on_bump = true
changelog_merge_prerelease = true
version_provider = "pep621"
version_scheme = "pep440"
version_files = ["pyproject.toml:version"]
pre_bump_hooks = ["pre-commit run --all-files || true"]
post_bump_hooks = ["git push origin master $CZ_POST_CURRENT_TAG_VERSION"]