mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 14:32:57 +08:00
setup.py: do not install tests
I'm getting the following error: ``` * Package installs 'tests' package which is forbidden and likely a bug in the build system. ``` This patch fixes it
This commit is contained in:
parent
f39c2a7b69
commit
b617e35755
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@
|
|||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/laramies/theHarvester",
|
||||
packages=setuptools.find_packages(),
|
||||
packages=setuptools.find_packages(exclude=['tests']),
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'theHarvester = theHarvester.__main__:entry_point'
|
||||
|
|
Loading…
Reference in a new issue