Skip to content

Commit 4924640

Browse files
committed
Include tests in sdist, but not wheel
1 parent 37cea6b commit 4924640

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
include README.rst LICENSE* CODE_OF_CONDUCT* CONTRIBUTING*
22
include .coveragerc
33
include ci/test-requirements.txt
4-
recursive-include tests *.pem
4+
recursive-include tests *.py
5+
recursive-exclude tests *.pyc
6+
prune tests/.pytest_cache
57
recursive-include docs *
68
prune docs/build

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
author_email="matthias@urlichs.de",
7070
url="https://github.com/python-trio/trio-asyncio",
7171
license="MIT -or- Apache License 2.0",
72-
packages=find_packages(),
72+
packages=["trio_asyncio"],
7373
install_requires=install_requires,
7474
# This means, just install *everything* you see under trio/, even if it
7575
# doesn't look like a source file, so long as it appears in MANIFEST.in:

0 commit comments

Comments
 (0)