cmsmanage/pyproject.toml

37 lines
636 B
TOML

[project]
name = "CMS Management"
version = "0.1.0"
description = ""
authors = [
{name = "Adam Goldsmith", email = "contact@adamgoldsmith.name"},
]
dependencies = [
"django~=4.0",
"mysqlclient~=2.1",
"django-auth-ldap~=4.0",
"django-admin-logs~=1.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
[tool.black]
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[tool.pdm.dev-dependencies]
lint = [
"black~=22.1",
"djlint~=0.7",
]
[tool.pdm.scripts]
start = "./manage.py runserver"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"