-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 705 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 705 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
[project]
name = "pdm-django"
version = "1.0.0"
description = "pdm shortcuts for Django projects"
authors = [
{name = "Paul Bailey", email = "paul@neutron.studio"},
]
dependencies = []
requires-python = ">=3.7"
license = {text = "MIT"}
readme = "README.md"
[project.urls]
homepage = "https://github.com/neutron-sync/pdm-django"
[project.optional-dependencies]
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"yapf>=0.32.0",
"toml>=0.10.2",
]
[tool.pdm.scripts]
_.env_file = ".env"
format = "yapf -rpi -vv ."
check_format = "yapf -rpd ."
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project.entry-points.pdm]
pdm_django = "pdm_django.main:reg_commands"