-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.3 KB
/
pyproject.toml
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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "argument-names"
dynamic = ["version"]
dependencies = [
"packaging>=24.1",
"typing-extensions>=4.12.2",
]
requires-python = ">=3.8"
authors = [
{ name="Santiago Papiernik", email="[email protected]" },
]
description = "This decorator dynamically maps argument names from a function's call to a specified function."
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"decorator", "argument names", "Python", "type checking"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/Cxx-mlr/identifiers"
[project.scripts]
argument-names = "argument_names.__main__:main"
[tool.pdm]
version = { source = "file", path = "argument_names/__init__.py" }
distribution = true
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"pytest>=8.3.3",
]