-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 800 Bytes
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
[project]
name = "django-easy-logging"
version = "0.70"
description = "Easy Django logging with Loguru"
authors = [
{name = "Paul Bailey", email = "paul@neutron.studio"},
]
dependencies = [
"loguru>=0.7.0"]
requires-python = ">=3.7"
license = {text = "MIT"}
readme = "README.md"
[project.urls]
homepage = "https://github.com/neutron-sync/django-easy-logging"
[project.optional-dependencies]
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"toml>=0.10.2",
"pytest>=7.0.0",
"yapf>=0.32.0",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.pdm.scripts]
_.env_file = ".env"
publish = "pdm publish --username __token__ --password $PDM_PUBLISH_PASSWORD"
format = "yapf -rpi -vv ."
check_format = "yapf -rpd ."
test = "pytest test_easy_log.py"