Skip to content

Commit

Permalink
don't install tests into the binary distribution (SatelliteQE#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 lpramuk committed Sep 26, 2023
1 parent 29f0be5 commit 344530e
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 344530e

Please sign in to comment.