-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (54 loc) · 1.61 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
[build-system]
requires = [
"setuptools==80.9.0",
"setuptools-scm[simple]==9.2.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "descanso"
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = "Andrey Tikhonov", email = "17@itishka.org" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
description = "A client framework for HTTP APIs"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
'kiss-headers',
]
[project.urls]
"Source" = "https://github.com/reagento/descanso"
"Homepage" = "https://github.com/reagento/descanso"
"Documentation" = "https://descanso.readthedocs.io/en/stable/"
"Bug Tracker" = "https://github.com/reagento/descanso/issues"
[tool.setuptools_scm]
version_file = "src/descanso/_version.py"
version_file_template = """\
# This file auto generated!
# DO NOT EDIT MANUALLY!
version: str = "{version}"
__version__: str = "{version}"
commit_hash: str = "{scm_version.node}"
version_timestamp: str = "{scm_version.time}"
tag: str = "{scm_version.tag}"
branch: str = "{scm_version.branch}"
commit_date: str = "{scm_version.node_date}"
commit_count_since_tag: int = {scm_version.distance}
"""