-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (39 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crimson-auto-pydantic"
version = "0.1.9"
description = "Automatic Pydantic model generation and validation for function parameters and return types."
readme = "README.md"
authors = [
{ name="Sisung Kim", email="[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"pydantic",
"crimson-code-extractor",
"crimson-ast-dev-tool",
"inflection",
"crimson-intelli-type",
"crimson-file-loader"
]
requires-python = ">=3.9"
[project.urls]
"Homepage" = "https://github.com/crimson206/auto-pydantic"
"Bug Tracker" = "https://github.com/crimson206/auto-pydantic/issues"
[tool.black]
line-length = 120
[tool.setuptools]
include-package-data = true