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

Distribute the tests #94

Merged
merged 1 commit into from Feb 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,3 +1,4 @@
recursive-include ast27 *.h
recursive-include ast3 *.h
recursive-include ast3/tests *.py
include LICENSE
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -116,6 +116,7 @@
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
],
packages = ['typed_ast'],
packages = ['typed_ast', 'typed_ast.tests'],
package_dir={ 'typed_ast.tests': 'ast3/tests' },
ext_package='typed_ast',
ext_modules = [_ast27, _ast3])