-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (41 loc) · 1.6 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
# =============================================================================
# Project Configuration
# =============================================================================
[tool.poetry]
name = "my_django_plugin"
version = "0.1.0"
description = "A Django plugin for..."
authors = ["Scape Agency <info@scape.agency>"]
maintainers = [
"Lars van Vianen <lars@scape.agency>",
]
license = "MIT"
# =============================================================================
# Dependencies
# =============================================================================
[tool.poetry.dependencies]
python = "^3.8"
Django = "^3.2"
# =============================================================================
# Development Dependencies
# =============================================================================
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0" # Code coverage for tests
black = "^24.8.0" # Code formatter
flake8 = "^7.1.0" # Linter for code quality
mypy = "^1.11.1" # Static type checker
sphinx = "^8.0.2" # Documentation generator
isort = "^5.10.1"
# =============================================================================
# Build System
# =============================================================================
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# =============================================================================
# Scripts
# =============================================================================
[tool.poetry.scripts]
my_django_plugin = 'my_django_plugin:main'