Add a MANIFEST.in and tox.ini file

This commit is contained in:
Paul Romano 2017-09-29 14:30:57 -05:00
parent 232f40e119
commit 819744bbcb
3 changed files with 15 additions and 0 deletions

4
.gitignore vendored
View file

@ -97,3 +97,7 @@ examples/jupyter/plots
*.c
*.html
*.so
.cache/
.tox/
.python-version

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include readme.rst
include openmc/data/reconstruct.pyx

9
tox.ini Normal file
View file

@ -0,0 +1,9 @@
[tox]
envlist = py{34,36}
[testenv]
commands = pytest tests/unit_tests
deps =
pytest
numpy
cython
passenv = OPENMC_CROSS_SECTIONS