Skip to content

Commit 78ee32e

Browse files
authored
Merge pull request #12 from DIRACGrid/chrisburr-patch-1
Fix package data to include py.typed file
2 parents 0441a47 + 84f6e19 commit 78ee32e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

MANIFEST.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
include README.md
22
include LICENSE
3+
include requirements.txt
34
include src/diraccfg/py.typed
4-
exclude tests/
5+
recursive-include tests *
6+
recursive-exclude * __pycache__
7+
recursive-exclude * *.py[co]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
license="GPL-3.0-only",
2424
test_suite="tests",
2525
setup_requires=["setuptools_scm"],
26+
include_package_data=True,
2627
install_requires=[],
2728
extras_require={
2829
"testing": test_requires,

0 commit comments

Comments
 (0)