cmsmanage/pyproject.toml

60 lines
1.1 KiB
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",
"django-admin-logs~=1.0",
"django-auth-ldap~=4.0",
"django-markdownx<5,>=4.0.0b1",
"django-recurrence~=1.11",
"django-widget-tweaks~=1.4",
"markdownify~=0.10",
"mdformat~=0.7",
"mdformat-tables~=0.4",
"mysqlclient~=2.1",
2022-05-05 02:13:48 -04:00
"bleach~=5.0",
"django-autocomplete-light~=3.9",
2022-02-11 23:52:31 -05:00
]
requires-python = ">=3.9"
[project.optional-dependencies]
server = [
"uvicorn~=0.17",
"setuptools~=60.9",
]
2022-02-11 23:52:31 -05:00
2022-01-23 23:03:08 -05:00
[tool.black]
[tool.djlint]
profile="django"
2022-01-23 23:03:08 -05:00
extension = ".dj.html"
indent = 2
blank_line_after_tag = "load,extends"
ignore = "T003,H017,H021,H030,H031"
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",
2022-05-05 02:13:48 -04:00
"djlint~=1.0",
2022-02-11 23:52:31 -05:00
]
debug = [
"django-debug-toolbar~=3.2",
]
2022-02-11 23:52:31 -05:00
[tool.pdm.scripts]
start = "./manage.py runserver"
fmt.shell = "black . && djlint --reformat ."
2022-02-11 23:52:31 -05:00
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"