-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.06 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
[project]
name = "pydantic-ast"
dynamic = ["version"]
description = "Pydantic models covering Python AST types"
authors = [
{name = "Louis Maddox", email = "louismmx@gmail.com"},
]
keywords = [
'pydantic', 'serialization', 'deserialization', 'parsing',
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries",
'Framework :: Pydantic',
'Framework :: Pydantic :: 2',
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pydantic>=2.1.1",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
pydantic-ast = "pydantic_ast.cli:read_command_line"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
version = { source = "file", path = "src/pydantic_ast/__init__.py" }
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.4.0",
]
[tool.isort]
known_first_party = ["pydantic_ast"]