-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.44 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
[project]
name = "cyantic"
description = "Use Pydantic to build complex types from simple parameters."
authors = [
{ name = "Rory Byrne", email = "rory@rory.bio" }
]
requires-python = ">=3.9"
dependencies = [
"pydantic>=2.10.3",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
'Intended Audience :: Information Technology',
"Typing :: Typed",
]
license = "Apache-2.0"
readme = "README.md"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/flywhl/cyantic"
Repository = "https://github.com/flywhl/cyantic"
Documentation = "https://github.com/flywhl/cyantic#readme"
"Bug Tracker" = "https://github.com/flywhl/cyantic/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.uv]
dev-dependencies = [
"coverage>=7.6.9",
"pre-commit>=4.0.1",
"pyright>=1.1.390",
"pytest-mock>=3.14.0",
"pytest>=8.3.4",
"ruff>=0.8.2",
]