-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.37 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
51
52
53
54
55
56
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "dynamic-cast"
dynamic = ["version"]
dependencies = [
"packaging>=24.1",
"typing-extensions>=4.12.2",
]
requires-python = ">=3.8"
authors = [
{ name="Santiago Papiernik", email="[email protected]" },
]
description = "A Python library for flexible type casting of function arguments and return values based on type annotations."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"type-casting",
"type-annotations",
"dynamic-typing",
"python-type-hints",
"type-conversion",
"function-arguments",
"type-checking",
"callable-type",
"data-types",
"type-safety",
"python-decorators",
"runtime-type-checking",
"type-inference",
"generic-types",
"automatic-type-casting",
"type-system"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"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",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/Cxx-mlr/dynamic-cast"
[project.scripts]
dynamic-cast = 'dynamic_cast.__main__:main'
[tool.pdm]
version = { source = "file", path = "dynamic_cast/__init__.py" }
distribution = true