Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 3, 2024
1 parent 21cfb8f commit ce5eae1
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# -*- coding: utf-8 -*-


# =============================================================================
# Project Configuration
# =============================================================================

[tool.poetry]
name = "django-lan"
version = "0.0.1"
Expand All @@ -11,13 +18,34 @@ 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"
black = "^24.4"
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"]
Expand Down

0 comments on commit ce5eae1

Please sign in to comment.