Skip to content

Commit 2ce9226

Browse files
committed
Allow mypy type analysis for the package.
1 parent fc665ad commit 2ce9226

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
include nova/*.pyi
1+
global-include *.pyi
2+
global-include *.typed

nova/py.typed

Whitespace-only changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def main():
224224
ext_modules=[extension],
225225
include_package_data=True,
226226
package_data={
227-
"nova": ["*.pyi"]
227+
"nova": ["*.pyi", "*.typed"]
228228
},
229229
packages=["nova"],
230230
cmdclass={

0 commit comments

Comments
 (0)