Skip to content

Commit dedc25e

Browse files
committed
cleanup apps
1 parent 6aee087 commit dedc25e

File tree

2 files changed

+34
-87
lines changed

2 files changed

+34
-87
lines changed

pyproject.toml

Lines changed: 34 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -7,46 +7,38 @@ build-backend = "pdm.backend"
77
#build-backend = "pdm.backend"
88

99
[project]
10-
authors = [
11-
{ name = "fluentqa-team", email = "[email protected]" },
12-
]
10+
authors = [{ name = "fluentqa-team", email = "[email protected]" }]
1311
classifiers = [
14-
"Development Status :: 3 - Alpha",
15-
"License :: OSI Approved :: MIT License",
16-
"Operating System :: OS Independent",
17-
"Programming Language :: Python :: 3.10",
18-
"Programming Language :: Python :: 3.11",
19-
"Programming Language :: Python :: 3.12",
20-
"Programming Language :: Python :: 3.8",
21-
"Programming Language :: Python :: 3.9",
12+
"Development Status :: 3 - Alpha",
13+
"License :: OSI Approved :: MIT License",
14+
"Operating System :: OS Independent",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9",
2220
]
2321
description = "A Python boilet template for different types of projects."
24-
dynamic = [
25-
"version",
26-
]
22+
dynamic = ["version"]
2723
keywords = [
28-
"copier-template",
29-
"full-development-lifecycle",
30-
"project-template",
31-
"scaffold",
24+
"copier-template",
25+
"full-development-lifecycle",
26+
"project-template",
27+
"scaffold",
3228
]
33-
license = {text = "MIT"}
29+
license = { text = "MIT" }
3430
name = "qpytpl"
3531
readme = "README.md"
3632
requires-python = ">=3.9"
37-
dependencies = [
38-
39-
"dynaconf>=3.2.5",
40-
"pydantic>=2.7.4",
41-
]
33+
dependencies = []
4234

4335
[tool.pdm.scripts]
4436
# ss-python-cli = "ss_python.cli:app"
4537
lint = "ruff ."
4638
fmt = "ruff format . --check"
4739
test = "pytest "
4840
docs = "mkdocs serve"
49-
docs-deploy ="mkdocs gh-deploy --force"
41+
docs-deploy = "mkdocs gh-deploy --force"
5042
cleanup = "sh scripts/cleanup.sh"
5143

5244
[project.urls]
@@ -57,16 +49,9 @@ repository = "https://github.com/fluent-qa/fluentqa-pytpl"
5749
distribution = true
5850

5951
[tool.pdm.dev-dependencies]
60-
docs = [
61-
"mkdocs-material>=9.5.27",
62-
"mkdocs>=1.6.0",
63-
]
64-
lint = [
65-
"ruff>=0.4.9"
66-
]
67-
test = [
68-
"pytest-cov>=5.0.0",
69-
]
52+
docs = ["mkdocs-material>=9.5.27", "mkdocs>=1.6.0"]
53+
lint = ["ruff>=0.4.9"]
54+
test = ["pytest-cov>=5.0.0"]
7055

7156

7257
[tool.pytest.ini_options]
@@ -76,38 +61,34 @@ log_cli_level = "info"
7661
log_date_format = "%Y-%m-%d %H:%M:%S"
7762
log_format = "%(asctime)s %(levelname)s %(message)s"
7863
minversion = "6.0"
79-
cov="qpytpl"
80-
cov-report="html"
64+
cov = "qpytpl"
65+
cov-report = "html"
8166

8267
[tool.coverage]
8368

8469
[tool.coverage.report]
8570
fail_under = 100
8671

8772
[tool.coverage.run]
88-
source = [
89-
"src/qpytpl",
90-
]
73+
source = ["src/qpytpl"]
9174

9275
[tool.ruff]
93-
extend-exclude = [
94-
"template",
95-
]
76+
extend-exclude = ["template"]
9677
fix = true
9778
src = ["src"]
9879

9980
[tool.ruff.lint]
10081
select = [
101-
"B", # flake8-bugbear
102-
"D", # pydocstyle
103-
"E", # pycodestyle error
104-
"F", # Pyflakes
105-
"I", # isort
106-
"RUF100", # Unused noqa directive
107-
"S", # flake8-bandit
108-
"SIM", # flake8-simplify
109-
"UP", # pyupgrade
110-
"W", # pycodestyle warning
82+
"B", # flake8-bugbear
83+
"D", # pydocstyle
84+
"E", # pycodestyle error
85+
"F", # Pyflakes
86+
"I", # isort
87+
"RUF100", # Unused noqa directive
88+
"S", # flake8-bandit
89+
"SIM", # flake8-simplify
90+
"UP", # pyupgrade
91+
"W", # pycodestyle warning
11192
]
11293

11394
[tool.ruff.lint.per-file-ignores]
@@ -129,5 +110,3 @@ url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
129110
[[tool.pdm.source]]
130111
name = "douban"
131112
url = "https://pypi.doubanio.com/simple/"
132-
133-

src/qpytpl/config/__init__.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)