Skip to content

Commit

Permalink
[PACKAGING] Excludes **ALL** modules relative to testing from install
Browse files Browse the repository at this point in the history
> There is currently a bug in stable releases, where `test.entries.*` modules are actually included in distributed packages.
  • Loading branch information
Samuel FORESTIER committed Oct 11, 2020
1 parent 4809de2 commit 2c3eebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author='Samuel Forestier', # Not alone
author_email='[email protected]',
license='GPLv3',
packages=find_packages(exclude=['archey.test']),
packages=find_packages(exclude=['archey.test*']),
test_suite='archey.test',
python_requires='>=3.4',
install_requires=[
Expand Down

0 comments on commit 2c3eebf

Please sign in to comment.