Skip to content

Commit

Permalink
changed setup.py and setup.cfg in order to allow python setup.py test…
Browse files Browse the repository at this point in the history
… to work
  • Loading branch information
shafferm committed Nov 28, 2016
1 parent 0e5c869 commit a9e3ac5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[metadata]
description-file = README.md
[aliases]
test=pytest
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
setup(
name="SCNIC",
version="0.2",
install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC", "pytest"],
setup_requires=['pytest-runner'],
test_require=['pytest'],
install_requires=["numpy", "scipy", "networkx", "biom-format", "pandas", "fast_sparCC"],
scripts=["scripts/SCNIC_analysis.py"],
packages=find_packages(),
description="A tool for finding and summarizing modules of highly correlated observations in compositional data",
Expand Down

0 comments on commit a9e3ac5

Please sign in to comment.