Files
sebastia 7c3676f094 tell find_packages to exclude the 'tests' subdirectory when building the
package. found it conflicting with devel/py-cstruct
2022-09-06 06:17:47 +00:00

13 lines
380 B
Plaintext

Index: setup.py
--- setup.py.orig
+++ setup.py
@@ -13,7 +13,7 @@ setup(
author_email="marcin@threat9.com",
url="https://www.threat9.com",
download_url="https://github.com/threat9/routersploit/",
- packages=find_packages(),
+ packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
scripts=('rsf.py',),
entry_points={},