-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.23 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
[build-system]
requires = [
"pdm-backend",
]
build-backend = "pdm.backend"
[project]
name = "pypdown"
version = "0.1.4"
description = "A Pydantic model-based approach to data pipelining with file I/O linting."
authors = [
{ name = "Louis Maddox", email = "louismmx@gmail.com" },
]
dependencies = [
"pydantic>=2.8.2",
]
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
]
[project.license]
text = "MIT"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
docs = [
"mkdocs-material[recommended,imaging]>=9.5.2",
"mkdocs-section-index>=0.3.8",
"mkdocs>=1.5.3",
"mkdocstrings[python]>=0.24.0",
]
test = [
"pytest>=8.2.2",
]
vercel = [
"urllib3<2",
]