Skip to content

Commit

Permalink
remove pdm.lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick committed Nov 5, 2024
1 parent 39e1f22 commit 0cecb25
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
requires = ["mina-build>=0.2.5"]
build-backend = "pdm.backend"

#[build-system]
#requires = ["pdm-backend", "pdm-polylith-workspace"]
#build-backend = "pdm.backend"

[project]
authors = [{ name = "fluentqa", email = "fluentqa@fluent-qa.com" }]
classifiers = [
Expand All @@ -28,7 +24,7 @@ license = { text = "UNDEFINED" }
name = "qpyconf"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["dynaconf>=3.2.5", "pydantic>=2.7.4"]
dependencies = ["dynaconf>=3.2.5", "pydantic>=2.7.4", "ruff>=0.7.2"]

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

[tool.coverage]

Expand Down Expand Up @@ -72,7 +69,8 @@ select = [
]

[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
"tests/*" = ["S101", "D103", "D102", "D101"]
"src/*" = ["D103", "D102", "D101"]

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

[tool.pdm]
distribution = true
include = ["src"]
[tool.pdm.build]
includes = ["src"]
source-includes = ["src/", "tests/", "scripts/"]

[tool.pdm.scripts]
lint = "ruff check --fix"
Expand All @@ -100,8 +94,6 @@ docs = "mkdocs serve"
docs-deploy = "mkdocs gh-deploy --force"
cleanup = "sh scripts/cleanup.sh"
purge = "sh scripts/cleanup.sh && rm -rf .venv/"
build = "pdm build"


[tool.pdm.dev-dependencies]
lint = ["ruff>=0.4.9"]
Expand Down

0 comments on commit 0cecb25

Please sign in to comment.