forked from joshourisman/django-pydantic-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 847 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
[tool.poetry]
name = "django-pydantic-settings"
version = "0.6.3"
description = "Manage Django settings with Pydantic."
authors = ["Josh Ourisman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/joshourisman/django-pydantic-settings"
repository = "https://github.com/joshourisman/django-pydantic-settings"
packages = [{ include = "pydantic_settings" }]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=1.11"
sentry-sdk = { version = "*", optional = true }
pydantic = { version = "^1.8", extras = ["email"] }
typing-extensions = { version = ">=3.7.4,<5.0.0", python = '<2.8' }
[tool.poetry.extras]
sentry = ["sentry-sdk"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-dotenv = "^0.5.2"
tox = "^3.25.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"