Skip to content

Commit

Permalink
don't install tests into the binary distribution
Browse files Browse the repository at this point in the history
this tries to install a "tests" python package, which we don't own.
at the same time, also exclude docs and contrib as done in the PyPA
sample project [1]

[1] https://github.com/pypa/sampleproject/blob/master/setup.py
  • Loading branch information
evgeni authored and omaciel committed Feb 20, 2018
1 parent b5117f0 commit c05839b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -25,7 +25,7 @@ def read(*paths):
author='Og Maciel',
author_email='omaciel@ogmaciel.com',
url='https://github.com/omaciel/fauxfactory',
packages=find_packages(),
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
keywords='python automation data',
license='Apache 2.0',
classifiers=[
Expand Down

0 comments on commit c05839b

Please sign in to comment.