-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (47 loc) · 1.84 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
57
58
59
60
61
# -*- coding: utf-8 -*-
# =============================================================================
# Project Configuration
# =============================================================================
[tool.poetry]
name = "django-lan"
version = "0.0.1"
description = "A Django plugin to manage Local Area Networks"
authors = ["Starling Associates <[email protected]>"]
license = "Apache-2.0"
homepage = "https://www.djangolan.com"
repository = "https://github.com/starling-cloud/django-lan"
documentation = "https://www.djangolan.com/docs"
packages = [
{ include = "django_lan", from = "src" },
]
# =============================================================================
# Dependencies
# =============================================================================
[tool.poetry.dependencies]
python = "^3.8"
Django = "^4.0"
# =============================================================================
# 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
# =============================================================================
>>>>>>> Stashed changes
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Homepage" = "https://www.djangolan.com"
"Repository" = "https://github.com/starling-cloud/django-lan"
"Documentation" = "https://www.djangolan.com/docs"
"Tracker" = "https://github.com/starling-cloud/django-lan/issues"
[tool.black]
line-length = 79