Added dependency listing in setup.py
This commit is contained in:
parent
3e15dfb2a4
commit
67d0c5a2aa
6
setup.py
6
setup.py
@ -222,10 +222,6 @@ class DependenciesBuilder(_build):
|
|||||||
if sys.platform.startswith('win'):
|
if sys.platform.startswith('win'):
|
||||||
_print_error("You cannot build Spintrum on Windows. It is not supported.")
|
_print_error("You cannot build Spintrum on Windows. It is not supported.")
|
||||||
|
|
||||||
python_version = float(str(sys.version_info[0]) + "." + str(sys.version_info[1]))
|
|
||||||
if python_version < 3.3:
|
|
||||||
_print_error("You must have python version >= 3.3 to use Spintrum")
|
|
||||||
|
|
||||||
check_programs_availability(["cmake","make","g++","gcc","gfortran","git","python3"])
|
check_programs_availability(["cmake","make","g++","gcc","gfortran","git","python3"])
|
||||||
|
|
||||||
print("Building Spintrum C/C++ extension prerequisites")
|
print("Building Spintrum C/C++ extension prerequisites")
|
||||||
@ -256,6 +252,8 @@ setup(name='spintrum',
|
|||||||
author_email='samer@afach.de',
|
author_email='samer@afach.de',
|
||||||
license='MPL',
|
license='MPL',
|
||||||
packages=['spintrum'],
|
packages=['spintrum'],
|
||||||
|
install_requires=['numpy', 'scipy', 'mpmath'],
|
||||||
|
python_requires = '>=3.3',
|
||||||
include_package_data=True, # enable including files with MANIFEST.in
|
include_package_data=True, # enable including files with MANIFEST.in
|
||||||
package_data={'': [lib_file]},
|
package_data={'': [lib_file]},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user