Skip to content

Commit c1c6a85

Browse files
committed
Include tests_require argument in setup.py
1 parent 5c8a26d commit c1c6a85

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
'Topic :: Scientific/Engineering :: Mathematics',
2626
'Operating System :: OS Independent']
2727

28-
required = ['numpy>=1.7.1', 'scipy>=0.12.0', 'matplotlib>=1.2.1',
29-
'Theano==0.6.0']
28+
install_reqs = ['numpy>=1.7.1', 'scipy>=0.12.0', 'matplotlib>=1.2.1',
29+
'Theano==0.6.0']
30+
test_reqs = ['nose']
3031

3132
if __name__ == "__main__":
3233
setup(name=DISTNAME,
@@ -41,4 +42,6 @@
4142
'pymc.step_methods', 'pymc.tuning',
4243
'pymc.tests', 'pymc.glm'],
4344
classifiers=classifiers,
44-
install_requires=required)
45+
install_requires=install_reqs,
46+
tests_require=test_reqs,
47+
test_suite='nose.collector')

0 commit comments

Comments
 (0)