aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-03-02 16:41:54 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-03-02 16:41:57 +0100
commit58f55a529ab00f9258b9fc13613f63dafc90f7b0 (patch)
tree85ac3d15c83888928f8d15491dac3360f40e934c /pyproject.toml
parentadd runtime version information (diff)
downloadcgitize-58f55a529ab00f9258b9fc13613f63dafc90f7b0.tar.gz
cgitize-58f55a529ab00f9258b9fc13613f63dafc90f7b0.zip
get rid of extra files in the wheelv4.0.10
Before the previous commit, `python -m build` would include both cgitize/ and test/. After the previous commit, the same command would include all the files in the repository. Why? I really don't know. List the package explicitly - we only need these files.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 5d7e0bd..51ee7f4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -33,7 +33,7 @@ classifiers = [
[project.scripts]
cgitize = "cgitize.main:main"
-[tool.setuptools.packages]
-find = {}
+[tool.setuptools]
+packages = ["cgitize"]
[tool.setuptools_scm]