-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (42 loc) · 1.23 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
[project]
name = "stable_pydantic"
version = "0.1.0"
description = "Stable versioning utilities for Pydantic models"
readme = "README.md"
authors = [
{ name = "QuartzLibrary", email = "81446760+QuartzLibrary@users.noreply.github.com" },
]
requires-python = ">=3.10"
dependencies = ["pydantic>=2.9.2", "typing_extensions>=4.0"]
license = "MIT"
keywords = ["pydantic", "versioning", "schema"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[build-system]
requires = ["uv_build>=0.9.8,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
# Ensure examples are dependencies which are built by uv sync (so pyright picks them up).
"user-app",
"chaos-app",
#
"pyright>=1.1.408",
"pytest>=9.0.0",
"ruff>=0.14.14",
"polyfactory>=3.2.0",
]
[tool.uv.sources]
user-app = { workspace = true }
chaos-app = { workspace = true }
[tool.uv.workspace]
members = ["examples/*"]