Skip to content

Commit 906b271

Browse files
committed
Correct manifest vs setup.py packages
All packages/*.py are automatically included so no need to specify in manifest
1 parent 839debb commit 906b271

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ include src/apsw.docstrings
77
# other files
88
include apsw/__init__.pyi
99
include apsw/py.typed
10-
include apsw/shell.py
11-
include apsw/speedtest.py
12-
include apsw/trace.py
13-
include apsw/tests/*.py
14-
include apsw/ext.py
1510

1611
# data
1712
include apsw/fts_test_strings

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ def get_icu_config() -> IcuConfig | None:
883883
undef_macros=["NDEBUG"] if os.environ.get("UNICODE_DEBUG") else [],
884884
),
885885
],
886-
packages=["apsw"],
886+
packages=["apsw", "apsw.tests"],
887887
package_data={"apsw": ["__init__.pyi", "py.typed", "fts_test_strings"]},
888888
cmdclass={
889889
"test": run_tests,

0 commit comments

Comments
 (0)