Skip to content

Commit

Permalink
Add missing benchmark files in setup.py and MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Nov 6, 2014
1 parent 169a3bb commit b0d20e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
recursive-include data *
recursive-include doc *
recursive-include sympy/logic/benchmarks/input *
prune doc/_build
recursive-include examples *.py README

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@
'sympy.functions',
'sympy.functions.combinatorial',
'sympy.functions.elementary',
'sympy.functions.elementary.benchmarks',
'sympy.functions.special',
'sympy.functions.special.benchmarks',
'sympy.galgebra',
'sympy.geometry',
'sympy.integrals',
Expand Down Expand Up @@ -311,7 +313,10 @@ def run(self):
packages=['sympy'] + modules + tests,
scripts=['bin/isympy'],
ext_modules=[],
package_data={ 'sympy.utilities.mathml': ['data/*.xsl'] },
package_data={
'sympy.utilities.mathml': ['data/*.xsl'],
'sympy.logic.benchmarks': ['input/*.cnf'],
},
data_files=[('share/man/man1', ['doc/man/isympy.1'])],
cmdclass={'test': test_sympy,
'bench': run_benchmarks,
Expand Down

0 comments on commit b0d20e9

Please sign in to comment.