Skip to content

Commit

Permalink
Exclude tests from wheel
Browse files Browse the repository at this point in the history
It's generally not desired to install tests together with the module.
This change does just that and keeps everything else unchanged. Tests
are still included in the sdist.
  • Loading branch information
penguinpee committed Aug 17, 2024
1 parent 6fc16b8 commit 37f7505
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ install_requires =
zarr_checksum
zip_safe = False
packages = find_namespace:
include_package_data = True
include_package_data = False

[options.packages.find]
include = dandischema*
exclude = *tests*

[options.extras_require]
# I bet will come handy
Expand Down

0 comments on commit 37f7505

Please sign in to comment.