Remove py_gmm dependence

Former-commit-id: e73d47f74bc3e7cfe2ffe17d6987171fd3a654a1
This commit is contained in:
Marek Nečada 2019-02-21 16:05:38 +02:00
parent f43db34075
commit 290cfbdd90
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ setup(name='qpms',
version = "0.2.993",
packages=['qpms'],
setup_requires=['cython>0.28'],
install_requires=['cython>=0.21','quaternion','spherical_functions','py_gmm'],
install_requires=['cython>=0.21','quaternion','spherical_functions',
#'py_gmm' # no longer needed
],
dependency_links=['https://github.com/texnokrates/py_gmm','https://github.com/moble/quaternion','https://github.com/moble/spherical_functions'],
ext_modules=cythonize([qpms_c], include_path=['qpms']),
cmdclass = {'build_ext': build_ext},