forked from amilsted/evoMPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.48 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from distutils.core import setup, Extension
from evoMPS.version import __version__
import numpy as np
try:
from Cython.Distutils import build_ext
except ImportError:
use_cython = False
print "Cython not found: Some optimizations will not be available."
else:
use_cython = True
if use_cython:
ext_modules = [Extension("evoMPS.matmul", ["evoMPS/matmul.py"]),
Extension("evoMPS.tdvp_common", ["evoMPS/tdvp_common.pyx"]),
Extension("evoMPS.tdvp_uniform", ["evoMPS/tdvp_uniform.py"])]
cmdclass = {"build_ext": build_ext}
else:
ext_modules = []
cmdclass = {}
setup(name='evoMPS',
version=__version__,
description='Python scripts for simulating time evolution of matrix product states',
author='Ashley Milsted',
url='https://github.com/amilsted/evoMPS',
license="BSD",
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
packages = ['evoMPS'],
requires = ["scipy (>=0.7)"],
cmdclass = cmdclass,
include_dirs = [np.get_include()],
ext_modules = ext_modules
)