forked from selective-inference/Python-software
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·153 lines (132 loc) · 5.56 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
#!/usr/bin/env python
''' Installation script for selectinf package '''
import os
import sys
from os.path import join as pjoin, dirname, exists
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
# update it when the contents of directories change.
if exists('MANIFEST'): os.remove('MANIFEST')
# Unconditionally require setuptools
import setuptools
# Package for getting versions from git tags
import versioneer
# Import distutils _after_ setuptools import, and after removing
# MANIFEST
from distutils.core import setup
from distutils.extension import Extension
from cythexts import cyproc_exts, get_pyx_sdist
from setup_helpers import (SetupDependency, read_vars_from,
make_np_ext_builder)
# Get various parameters for this version, stored in selectinf/info.py
info = read_vars_from(pjoin('selectinf', 'info.py'))
# Try to preempt setuptools monkeypatching of Extension handling when Pyrex
# is missing. Otherwise the monkeypatched Extension will change .pyx
# filenames to .c filenames, and we probably don't have the .c files.
sys.path.insert(0, pjoin(dirname(__file__), 'fake_pyrex'))
# Set setuptools extra arguments
extra_setuptools_args = dict(
tests_require=['nose'],
test_suite='nose.collector',
zip_safe=False,
extras_require = dict(
doc=['Sphinx>=1.0'],
test=['nose>=0.10.1']))
# Define extensions
EXTS = []
for modulename, other_sources in (
('selectinf.sampling.truncnorm', []),
('selectinf.sampling.truncnorm_quadratic', []),
('selectinf.sampling.sqrt_lasso', []),
):
pyx_src = pjoin(*modulename.split('.')) + '.pyx'
EXTS.append(Extension(modulename,[pyx_src] + other_sources,
libraries=[], # in principle 'm' but does not seem to be required
),
)
EXTS.append(Extension('selectinf.algorithms.debiased_lasso_utils',
['selectinf/algorithms/debiased_lasso_utils.pyx',
'C-software/src/quadratic_program_wide.c'],
libraries=[],
include_dirs=['C-software/src']))
EXTS.append(Extension('selectinf.algorithms.cox_utils',
['selectinf/algorithms/cox_utils.pyx',
'C-software/src/cox_fns.c'],
libraries=[],
include_dirs=['C-software/src']))
EXTS.append(Extension('selectinf.randomized.selective_MLE_utils',
['selectinf/randomized/selective_MLE_utils.pyx',
'C-software/src/selective_mle.c',
'C-software/src/cox_fns.c'],
libraries=[],
include_dirs=['C-software/src']))
# Cython is a dependency for building extensions, iff we don't have stamped
# up pyx and c files.
build_ext, need_cython = cyproc_exts(EXTS,
info.CYTHON_MIN_VERSION,
'pyx-stamps')
# Add numpy includes when building extension.
build_ext = make_np_ext_builder(build_ext)
# Check dependencies, maybe add to setuptools lists
if need_cython:
SetupDependency('Cython', info.CYTHON_MIN_VERSION,
req_type='install_requires',
heavy=False).check_fill(extra_setuptools_args)
SetupDependency('numpy', info.NUMPY_MIN_VERSION,
req_type='install_requires',
heavy=True).check_fill(extra_setuptools_args)
SetupDependency('scipy', info.SCIPY_MIN_VERSION,
req_type='install_requires',
heavy=True).check_fill(extra_setuptools_args)
cmdclass=versioneer.get_cmdclass()
cmdclass.update(dict(
build_ext=build_ext,
sdist=get_pyx_sdist()))
# get long_description
if sys.version_info[0] > 2:
long_description = open('README.rst', 'rt', encoding='utf-8').read()
else:
long_description = unicode(file('README.rst').read(), 'utf-8')
def main(**extra_args):
setup(name=info.NAME,
maintainer=info.MAINTAINER,
maintainer_email=info.MAINTAINER_EMAIL,
description=info.DESCRIPTION,
url=info.URL,
download_url=info.DOWNLOAD_URL,
license=info.LICENSE,
classifiers=info.CLASSIFIERS,
author=info.AUTHOR,
author_email=info.AUTHOR_EMAIL,
platforms=info.PLATFORMS,
version=versioneer.get_version(),
requires=info.REQUIRES,
provides=info.PROVIDES,
packages = ['selectinf',
'selectinf.utils',
'selectinf.truncated',
'selectinf.truncated.tests',
'selectinf.constraints',
'selectinf.constraints.tests',
'selectinf.distributions',
'selectinf.distributions.tests',
'selectinf.algorithms',
'selectinf.algorithms.tests',
'selectinf.sampling',
'selectinf.sampling.tests',
'selectinf.randomized',
'selectinf.randomized.tests',
'selectinf.tests',
'selectinf.learning'
],
ext_modules = EXTS,
package_data = {},
data_files=[],
scripts=[],
long_description=long_description,
cmdclass = cmdclass,
**extra_args
)
#simple way to test what setup will do
#python setup.py install --prefix=/tmp
if __name__ == "__main__":
main(**extra_setuptools_args)