-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (24 loc) · 1.13 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
# -*- coding: utf-8 -*-
# =============================================================================
# Project Configuration
# =============================================================================
# =============================================================================
# Dependencies
# =============================================================================
# =============================================================================
# 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 = ["setuptools>=42", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"