django-cats/pyproject.toml
Jan Dittberner 045a3cd23a Add basic project files
- COPYING contains the GPL 3.0 license text
- README.md contains a short description of the project
- poetry.lock is the bill of material generated by poetry lock
- pyproject.toml describes the project for use with Poetry
2024-09-17 17:10:59 +02:00

23 lines
575 B
TOML

[tool.poetry]
name = "django-cats"
version = "0.1.0"
description = "Django implementation of the CAcert Assurer Training System - CATS"
authors = ["Jan Dittberner <jandd@cacert.org>"]
license = "GPLv3+"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.2.0"
environs = {extras = ["django"], version = "^11.0.0"}
mysqlclient = "^2.2.4"
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "^4.4.6"
black = "^24.8.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"