Update setup.py for dependencies
Former-commit-id: e9be513946c8e82032971891062b05e74a97b7f8
This commit is contained in:
parent
dd70c60db4
commit
11cf5b5edc
4
setup.py
4
setup.py
|
@ -40,11 +40,11 @@ setup(name='qpms',
|
||||||
version = "0.2.994",
|
version = "0.2.994",
|
||||||
packages=['qpms'],
|
packages=['qpms'],
|
||||||
setup_requires=['cython>0.28'],
|
setup_requires=['cython>0.28'],
|
||||||
install_requires=['cython>=0.21','quaternion','spherical_functions',
|
install_requires=['cython>=0.21','quaternion','spherical_functions','scipy>=0.14.0'
|
||||||
#'py_gmm' # no longer needed
|
#'py_gmm' # no longer needed
|
||||||
],
|
],
|
||||||
# TODO implement https://stackoverflow.com/questions/17366784/setuptools-unable-to-use-link-from-dependency-links and update README.md accordingly
|
# TODO implement https://stackoverflow.com/questions/17366784/setuptools-unable-to-use-link-from-dependency-links and update README.md accordingly
|
||||||
dependency_links=['https://github.com/texnokrates/py_gmm','https://github.com/moble/quaternion','https://github.com/moble/spherical_functions'],
|
dependency_links=['https://github.com/moble/quaternion/archive/v2.0.tar.gz','https://github.com/moble/spherical_functions/archive/master.zip'],
|
||||||
ext_modules=cythonize([qpms_c], include_path=['qpms']),
|
ext_modules=cythonize([qpms_c], include_path=['qpms']),
|
||||||
cmdclass = {'build_ext': build_ext},
|
cmdclass = {'build_ext': build_ext},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue