Add sympy>=1.2 to dependencies
(it has the identity attribute for PermutationGroup; used in PointGroupInfo) Former-commit-id: deb63942478d6726e56d20f4ddae6d6831638ed6
This commit is contained in:
parent
0142760061
commit
65605c4680
4
setup.py
4
setup.py
|
@ -40,9 +40,9 @@ 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.28','quaternion','spherical_functions','scipy>=0.18.0'],
|
install_requires=['cython>=0.28','quaternion','spherical_functions','scipy>=0.18.0', 'sympy>=1.2'],
|
||||||
dependency_links=['https://github.com/moble/quaternion/archive/v2.0.tar.gz','https://github.com/moble/spherical_functions/archive/master.zip'],
|
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'], gdb_debug=True),
|
||||||
cmdclass = {'build_ext': build_ext},
|
cmdclass = {'build_ext': build_ext},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue