-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1 KB
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
[tool.poetry]
name = "star-template-py"
version = "0.1.0"
description = "CoderDeltaLAN star template (Python)"
authors = ["CoderDeltaLAN <coderdeltalan.cargo784@8alias.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/CoderDeltaLAN/star-template"
repository = "https://github.com/CoderDeltaLAN/star-template"
packages = [{include = "star_template", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
ruff = "^0.6.0"
black = "^24.0.0"
mypy = "1.11.2"
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = [".venv", "node_modules", "dist", "build", ".pytest_cache", "coverage"]
[tool.black]
line-length = 100
extend-exclude = '''
(\.venv|node_modules|dist|build|\.pytest_cache|coverage)
'''
[tool.pytest.ini_options]
addopts = "-q --cov=src --cov-report=term-missing --cov-fail-under=100"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"