We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8a26d commit c1c6a85Copy full SHA for c1c6a85
setup.py
@@ -25,8 +25,9 @@
25
'Topic :: Scientific/Engineering :: Mathematics',
26
'Operating System :: OS Independent']
27
28
-required = ['numpy>=1.7.1', 'scipy>=0.12.0', 'matplotlib>=1.2.1',
29
- 'Theano==0.6.0']
+install_reqs = ['numpy>=1.7.1', 'scipy>=0.12.0', 'matplotlib>=1.2.1',
+ 'Theano==0.6.0']
30
+test_reqs = ['nose']
31
32
if __name__ == "__main__":
33
setup(name=DISTNAME,
@@ -41,4 +42,6 @@
41
42
'pymc.step_methods', 'pymc.tuning',
43
'pymc.tests', 'pymc.glm'],
44
classifiers=classifiers,
- install_requires=required)
45
+ install_requires=install_reqs,
46
+ tests_require=test_reqs,
47
+ test_suite='nose.collector')
0 commit comments