forked from tenpy/tenpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
165 lines (136 loc) · 4.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Copyright 2018 TeNPy Developers
from setuptools import setup, find_packages
from setuptools import Extension
import numpy
import sys
import os
import subprocess
if not sys.version_info >= (3, 5):
print("ERROR: old python version, the script got called by\n" + sys.version)
sys.exit(1)
# hardcode version for people without git
MAJOR = 0
MINOR = 4
MICRO = 0
RELEASED = False
VERSION = '{0:d}.{1:d}.{2:d}'.format(MAJOR, MINOR, MICRO)
# Before updating a version, make sure that *all* tests run successfully!
# To update:
# # update CHANGELOG.rst
# # update the version in this module and in tenpy/version.py, set RELEASED=True
# git commit -m "VERSION 0.1.2"
# git tag -a "v0.1.2"
# bash ./compile.sh
# python setup.py sdist # create source package for PyPI
# python setup.py test # run tests!
# # reset RELEASED = False in this module"
# git commit -m "reset RELEASED to False"
# git push
# git push origin v0.1.2 # also push the tag
# python -m twine upload dist/physics-tenpy-0.1.2.tar.gz
def get_git_revision():
"""get revision hash from git"""
if not os.path.exists('.git'):
rev = "unknown"
else:
try:
rev = subprocess.check_output(['git', 'rev-parse', 'HEAD'],
stderr=subprocess.STDOUT).decode().strip()
except:
rev = "unknown"
return rev
def get_version_info():
full_version = VERSION
git_rev = get_git_revision()
if not RELEASED:
full_version += '.dev0+' + git_rev[:7]
return full_version, git_rev
def write_version_py(full_version, git_rev, filename='tenpy/_version.py'):
"""write the version during compilation to disc"""
content = """
# THIS FILE IS GENERATED FROM setup.py
# thus, it contains the version during compilation
version = '{version!s}'
short_version = 'v' + version
released = {released!s}
full_version = '{full_version!s}'
git_revision = '{git_rev!s}'
numpy_version = '{numpy_ver!s}'
cython_version = '{cython_ver!s}'
"""
try:
import Cython
cython_ver = Cython.__version__
except:
cython_ver = "(not available)"
content = content.format(version=VERSION,
full_version=full_version,
released=RELEASED,
git_rev=git_rev,
numpy_ver=numpy.version.full_version,
cython_ver=cython_ver)
with open(filename, 'w') as f:
f.write(content)
# done
def read_requ_file(filename):
with open(filename, 'r') as f:
requ = f.readlines()
return [l.strip() for l in requ if l.strip()]
def read_requirements():
extra_requ = {
'doc': read_requ_file('requirements-doc.txt'),
'plot': read_requ_file('requirements-plot.txt'),
'test': read_requ_file('requirements-test.txt'),
}
extra_requ['all'] = [r for requ in extra_requ.values() for r in requ]
return extra_requ
def setup_cython_extension():
try:
from Cython.Build import cythonize
except:
return []
# see tenpy/tools/optimization.py for details on "TENPY_OPTIMIZE"
TENPY_OPTIMIZE = int(os.getenv('TENPY_OPTIMIZE', 1))
include_dirs = [numpy.get_include()]
libs = []
lib_dirs = []
extensions = [
Extension("*", ["tenpy/linalg/*.pyx"],
include_dirs=include_dirs,
libraries=libs,
library_dirs=lib_dirs,
language='c++')
]
comp_direct = { # compiler_directives
'language_level': 3, # use python 3
'embedsignature': True, # write function signature in doc-strings
}
if TENPY_OPTIMIZE > 1:
comp_direct['initializedcheck'] = False
comp_direct['boundscheck'] = False
if TENPY_OPTIMIZE < 1:
comp_direct['profile'] = True
comp_direct['linetrace'] = True
# compile time flags (#DEF ...)
comp_flags = {'TENPY_OPTIMIZE': TENPY_OPTIMIZE}
ext_modules = cythonize(extensions,
compiler_directives=comp_direct,
compile_time_env=comp_flags)
return ext_modules
def setup_package():
# change directory to root path of the repository
src_path = os.path.dirname(os.path.abspath(sys.argv[0]))
os.chdir(src_path)
full_version, git_rev = get_version_info()
write_version_py(full_version, git_rev)
ext_modules = setup_cython_extension()
extras_require = read_requirements()
setup_requires = ['setuptools>=30.3.0', 'pytest-runner', 'Cython>=0.27', 'numpy>=1.13']
setup(version=full_version,
ext_modules=ext_modules,
setup_requires=setup_requires,
install_requires=read_requ_file('requirements.txt'),
extras_require=extras_require,
tests_require=extras_require['test'])
if __name__ == "__main__":
setup_package()