Skip to content

Commit

Permalink
don't install tests into the binary distribution (#482)
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 abalakh committed Feb 20, 2018
1 parent 6f05252 commit 54c999f
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 @@ -37,7 +37,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
packages=find_packages(),
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'fauxfactory',
'inflection',
Expand Down

0 comments on commit 54c999f

Please sign in to comment.