-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
39 lines (35 loc) · 1006 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
[tool.poetry]
name = "pydjantic"
version = "1.1.5"
description = "Pydantic Settings for Django"
authors = ["Vladimir Vyazovetskov <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ErhoSen/pydjantic"
repository = "https://github.com/ErhoSen/pydjantic"
keywords = ["pydantic", "django", "PydanticSettings", "settings"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
dj-database-url = ">=2.1.0"
pydantic = ">=2.5.2"
pydantic-settings = ">=2.1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pre-commit = "^2.11.1"
tempenv = "^2.0.0"
deepdiff = "^5.8.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"