Skip to content

Commit 92a5cbd

Browse files
add mypyc.analysis to setup.py (#9587)
Fixes #9584
1 parent 5bdb6b5 commit 92a5cbd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ recursive-include mypy/typeshed *.py *.pyi
77
recursive-include mypy/xml *.xsd *.xslt *.css
88
recursive-include mypyc/lib-rt *.c *.h *.tmpl *.py *.cc
99
recursive-include mypyc/ir *.py
10+
recursive-include mypyc/analysis *.py
1011
recursive-include mypyc/codegen *.py
1112
recursive-include mypyc/irbuild *.py
1213
recursive-include mypyc/primitives *.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def run(self):
181181
packages=[
182182
'mypy', 'mypy.test', 'mypy.server', 'mypy.plugins', 'mypy.dmypy',
183183
'mypyc', 'mypyc.test', 'mypyc.codegen', 'mypyc.ir', 'mypyc.irbuild',
184-
'mypyc.primitives', 'mypyc.transform'
184+
'mypyc.primitives', 'mypyc.transform', 'mypyc.analysis'
185185
],
186186
package_data={'mypy': package_data},
187187
scripts=['scripts/mypyc'],

0 commit comments

Comments
 (0)