Skip to content

Commit 0cecb25

Browse files
author
patrick
committed
remove pdm.lock file
1 parent 39e1f22 commit 0cecb25

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

pyproject.toml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
requires = ["mina-build>=0.2.5"]
33
build-backend = "pdm.backend"
44

5-
#[build-system]
6-
#requires = ["pdm-backend", "pdm-polylith-workspace"]
7-
#build-backend = "pdm.backend"
8-
95
[project]
106
authors = [{ name = "fluentqa", email = "fluentqa@fluent-qa.com" }]
117
classifiers = [
@@ -28,7 +24,7 @@ license = { text = "UNDEFINED" }
2824
name = "qpyconf"
2925
readme = "README.md"
3026
requires-python = ">=3.11"
31-
dependencies = ["dynaconf>=3.2.5", "pydantic>=2.7.4"]
27+
dependencies = ["dynaconf>=3.2.5", "pydantic>=2.7.4", "ruff>=0.7.2"]
3228

3329
[project.urls]
3430
issue = "https://github.com/fluent-qa/qpyconf/issues"
@@ -41,7 +37,8 @@ log_cli_level = "info"
4137
log_date_format = "%Y-%m-%d %H:%M:%S"
4238
log_format = "%(asctime)s %(levelname)s %(message)s"
4339
minversion = "6.0"
44-
pythonpath = ["src"]
40+
cov = "qpyconf"
41+
cov-report = "html"
4542

4643
[tool.coverage]
4744

@@ -72,7 +69,8 @@ select = [
7269
]
7370

7471
[tool.ruff.lint.per-file-ignores]
75-
"tests/*" = ["S101"]
72+
"tests/*" = ["S101", "D103", "D102", "D101"]
73+
"src/*" = ["D103", "D102", "D101"]
7674

7775
[tool.ruff.lint.pydocstyle]
7876
convention = "google"
@@ -85,10 +83,6 @@ trailing_comma_inline_array = true
8583

8684
[tool.pdm]
8785
distribution = true
88-
include = ["src"]
89-
[tool.pdm.build]
90-
includes = ["src"]
91-
source-includes = ["src/", "tests/", "scripts/"]
9286

9387
[tool.pdm.scripts]
9488
lint = "ruff check --fix"
@@ -100,8 +94,6 @@ docs = "mkdocs serve"
10094
docs-deploy = "mkdocs gh-deploy --force"
10195
cleanup = "sh scripts/cleanup.sh"
10296
purge = "sh scripts/cleanup.sh && rm -rf .venv/"
103-
build = "pdm build"
104-
10597

10698
[tool.pdm.dev-dependencies]
10799
lint = ["ruff>=0.4.9"]

0 commit comments

Comments
 (0)