forked from amilsted/evoMPS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (43 loc) · 1.74 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
46
47
48
49
50
from distutils.core import setup, Extension
from evoMPS.version import __version__
import numpy as np
from distutils.command.build import build as _build
ext_modules = [Extension("evoMPS.matmul", ["evoMPS/matmul.c"]),
Extension("evoMPS.tdvp_common", ["evoMPS/tdvp_common.c"]),
Extension("evoMPS.allclose", ["evoMPS/allclose.c"]),
Extension("evoMPS.tdvp_calc_C", ["evoMPS/tdvp_calc_C.c"])]
class build(_build):
def initialize_options(self):
_build.initialize_options(self)
self.disable_build_ext = 0
def finalize_options(self):
_build.finalize_options(self)
if self.disable_build_ext != 0:
self.sub_commands.remove(self.sub_commands[2])
build.user_options += [
('disable-build-ext', None,
"disable build-ext and use pure python mode")]
setup(cmdclass={'build': build},
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)"],
include_dirs = [np.get_include()],
ext_modules = ext_modules
)