diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 16:41:54 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 16:41:57 +0100 |
commit | 58f55a529ab00f9258b9fc13613f63dafc90f7b0 (patch) | |
tree | 85ac3d15c83888928f8d15491dac3360f40e934c | |
parent | add runtime version information (diff) | |
download | cgitize-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.
-rw-r--r-- | pyproject.toml | 4 |
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] |