cmsmanage/pyproject.toml

37 lines
636 B
TOML
Raw Normal View History

2022-02-11 23:52:31 -05:00
[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]
2022-02-11 13:48:47 -05:00
[tool.black]
2022-02-11 23:52:31 -05:00
[[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"