File tree Expand file tree Collapse file tree 3 files changed +9
-15
lines changed Expand file tree Collapse file tree 3 files changed +9
-15
lines changed Original file line number Diff line number Diff line change 11graft python_template
2- graft python_template/tests
32
43include LICENSE
54include README.md
6- include CONTRIBUTING.md
7-
8- include .bumpversion.cfg
9- include pyproject.toml
10- include Makefile
115
126prune docs
137prune .vscode
148prune .github
159
16- # test and lint assets
1710prune .pytest_cache
1811prune .ruff_cache
1912prune .mypy_cache
2013
14+ exclude CONTRIBUTING.md
15+ exclude .bumpversion.cfg
16+ exclude pyproject.toml
17+ exclude Makefile
18+
2119exclude .gitignore
2220exclude .gitattributes
2321
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ major: ## bump a major version
9696.PHONY : dist dist-build dist-sdist dist-local-wheel publish
9797
9898dist-build : # build python dists
99- python setup.py sdist bdist_wheel
99+ python -m build -w -s
100100
101101dist-check : # # run python dist checker with twine
102102 python -m twine check dist/*
Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [
3- " setuptools" ,
4- " setuptools-scm" ,
5- " wheel" ,
6- ]
2+ requires = [" setuptools" , " wheel" ]
73build-backend =" setuptools.build_meta"
84
95[project ]
@@ -13,7 +9,7 @@ description="A pure-python project template"
139readme = " README.md"
1410license = { text = " Apache-2.0" }
1511version = " 0.1.0"
16- requires-python = " >=3.7 "
12+ requires-python = " >=3.8 "
1713keywords = [
1814 " some" ,
1915 " keywords" ,
@@ -24,11 +20,11 @@ classifiers = [
2420 " Programming Language :: Python :: Implementation :: CPython" ,
2521 " Programming Language :: Python :: Implementation :: PyPy" ,
2622 " Programming Language :: Python :: 3" ,
27- " Programming Language :: Python :: 3.7" ,
2823 " Programming Language :: Python :: 3.8" ,
2924 " Programming Language :: Python :: 3.9" ,
3025 " Programming Language :: Python :: 3.10" ,
3126 " Programming Language :: Python :: 3.11" ,
27+ " Programming Language :: Python :: 3.12" ,
3228]
3329
3430dependencies = [
You can’t perform that action at this time.
0 commit comments