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:
Anton Bolshakov 2019-04-16 09:43:54 +08:00 committed by GitHub
parent f39c2a7b69
commit b617e35755
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'