Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit 33209c4

Browse files
mr-cgvanrossum
authored andcommitted
Distribute the tests (#94)
1 parent 54d1ab1 commit 33209c4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
recursive-include ast27 *.h
22
recursive-include ast3 *.h
3+
recursive-include ast3/tests *.py
34
include LICENSE

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@
116116
'Programming Language :: Python :: 3.7',
117117
'Topic :: Software Development',
118118
],
119-
packages = ['typed_ast'],
119+
packages = ['typed_ast', 'typed_ast.tests'],
120+
package_dir={ 'typed_ast.tests': 'ast3/tests' },
120121
ext_package='typed_ast',
121122
ext_modules = [_ast27, _ast3])

0 commit comments

Comments
 (0)