-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 900 Bytes
/
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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "pydantic-argparse-next"
version = "1.0.7"
description = "Pydantic 2 argparse."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "oevergodofchaos", email = "vezonzzzzzz@gmail.com"}
]
keywords = [
"pydantic",
"argparse",
"parser",
"argparser",
"cli"
]
dependencies = [
"pydantic (>=2.11.3,<3.0.0)",
"rich (>=14.0.0,<15.0.0)"
]
packages = [
{ include = "pydantic_argparse_next" }
]
[project.urls]
Homepage = "https://github.com/overgodofchaos/pydantic-argparse-next"
Documentation = "https://github.com/overgodofchaos/pydantic-argparse-next"
Repository = "https://github.com/overgodofchaos/pydantic-argparse-next"
[tool.poetry]
package-mode = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
mx-logger = "^1.0.0"