@@ -7,46 +7,38 @@ build-backend = "pdm.backend"
77# build-backend = "pdm.backend"
88
99[project ]
10- authors = [
11- { name = " fluentqa-team" , email = " fluent-qa@fluentqa.com" },
12- ]
10+ authors = [{ name = " fluentqa-team" , email = " fluent-qa@fluentqa.com" }]
1311classifiers = [
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]
2321description = " A Python boilet template for different types of projects."
24- dynamic = [
25- " version" ,
26- ]
22+ dynamic = [" version" ]
2723keywords = [
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" }
3430name = " qpytpl"
3531readme = " README.md"
3632requires-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"
4537lint = " ruff ."
4638fmt = " ruff format . --check"
4739test = " pytest "
4840docs = " mkdocs serve"
49- docs-deploy =" mkdocs gh-deploy --force"
41+ docs-deploy = " mkdocs gh-deploy --force"
5042cleanup = " sh scripts/cleanup.sh"
5143
5244[project .urls ]
@@ -57,16 +49,9 @@ repository = "https://github.com/fluent-qa/fluentqa-pytpl"
5749distribution = 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"
7661log_date_format = " %Y-%m-%d %H:%M:%S"
7762log_format = " %(asctime)s %(levelname)s %(message)s"
7863minversion = " 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 ]
8570fail_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" ]
9677fix = true
9778src = [" src" ]
9879
9980[tool .ruff .lint ]
10081select = [
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 ]]
130111name = " douban"
131112url = " https://pypi.doubanio.com/simple/"
132-
133-
0 commit comments