Skip to content

Commit 9b6a066

Browse files
committedDec 21, 2017
properly package grammar sources
1 parent fe518fc commit 9b6a066

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎MANIFEST.in

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ prune doc/_build
44
recursive-include examples *.py README
55

66
include sympy/utilities/mathml/data/*.xsl
7-
include sympy/parsing/latex/*.g4
8-
include sympy/parsing/latex/_antlr/*.tokens
9-
include sympy/parsing/latex/_antlr/*.interp
10-
include sympy/parsing/latex/LICENSE.txt
7+
8+
recursive-include sympy/parsing/latex *.g4 *.tokens *.interp *.txt
119

1210
include LICENSE
1311
include TODO

‎setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,8 @@ def run(self):
385385
package_data={
386386
'sympy.utilities.mathml': ['data/*.xsl'],
387387
'sympy.logic.benchmarks': ['input/*.cnf'],
388+
'sympy.parsing.latex': ['*.txt', '*.g4'],
389+
'sympy.parsing.latex._antlr': ['*.interp', '*.tokens'],
388390
},
389391
data_files=[('share/man/man1', ['doc/man/isympy.1'])],
390392
cmdclass={'test': test_sympy,

0 commit comments

Comments
 (0)
Please sign in to comment.