-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
79 lines (70 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "adaptive-cards-python"
dynamic = ["version"]
description = "Fully typed & validated Adaptive Card implementation using Pydantic."
readme = "README.md"
authors = [{ name = "Emir Karamehmetoglu", email = "emirk@axis.com" }]
requires-python = ">=3.12"
dependencies = [
"pydantic-extra-types>=2.10.4",
"pydantic>=2.11.4",
"orjson>=3.10.18",
"jsonschema>=4.0.0",
"requests>=2.0.0",
]
license = "MIT"
# PEP301 trove classifiers
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
"Framework :: Pydantic",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: File Formats :: JSON :: JSON Schema",
"Natural Language :: English",
]
keywords = [
"adaptive-cards",
"microsoft-teams",
"pydantic",
"jsonschema",
"datamodel-code-gen",
"webhook",
]
[project.urls]
Homepage = "https://github.com/emirkmo/adaptive-cards-python.git"
Repository = "https://github.com/emirkmo/adaptive-cards-python.git"
Issues = "https://github.com/emirkmo/adaptive-cards-python/issues"
Changelog = "https://github.com/emirkmo/adaptive-cards-python/releases"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.11.8",
"datamodel-code-generator[http]",
]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.hatch.build.targets.sdist]
exclude = [".github",]
[tool.uv-dynamic-versioning]
fallback-version = "0.1.0"
vcs = "git"
#style = "pep440"
#bump = {enable=true, index=-1}
metadata = false
ignore-untracked = true
format-jinja = "{{bump_version(base)}}"
[[tool.uv.index]]
name = "PyPI"
url = "https://pypi.org/simple/"