Skip to content

Commit

Permalink
Include tests in source distribution but not in installed package
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lundberg committed Mar 20, 2021
1 parent 6fb3955 commit 6b6dced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ recursive-exclude * *.py[co]

recursive-include docs *.rst conf.py Makefile requirements.txt
recursive-include examples *.md *.txt *.py
recursive-include tests *.py

include simple_pid/*.pyi
include simple_pid/py.typed
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'Programming Language :: Python :: 3',
],
keywords='pid controller control',
packages=find_packages(),
packages=find_packages(exclude=['tests']),
package_data={
'simple_pid': ['*.pyi', 'py.typed'],
},
Expand Down

0 comments on commit 6b6dced

Please sign in to comment.