forked from mycecilia/FaST-LMM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
128 lines (119 loc) · 4.88 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
import platform
import os
import sys
import shutil
from setuptools import setup, Extension
from distutils.command.clean import clean as Clean
import numpy
# Version number
version = '0.2.24'
def readme():
with open('README.md') as f:
return f.read()
try:
from Cython.Distutils import build_ext
except ImportError:
use_cython = False
else:
use_cython = True
class CleanCommand(Clean):
description = "Remove build directories, and compiled files (including .pyc)"
def run(self):
Clean.run(self)
if os.path.exists('build'):
shutil.rmtree('build')
for dirpath, dirnames, filenames in os.walk('.'):
for filename in filenames:
if ( filename.endswith('.so')
or filename.endswith('.pyd')
#or filename.find("wrap_qfc.cpp") != -1 # remove automatically generated source file
#or filename.endswith('.dll')
or filename.endswith('.pyc')
):
tmp_fn = os.path.join(dirpath, filename)
print "removing", tmp_fn
os.unlink(tmp_fn)
# set up macro
if platform.system() == "Darwin":
macros = [("__APPLE__", "1")]
elif "win" in platform.system().lower():
macros = [("_WIN32", "1")]
else:
macros = [("_UNIX", "1")]
#see http://stackoverflow.com/questions/4505747/how-should-i-structure-a-python-package-that-contains-cython-code
if use_cython:
ext_modules = [Extension(name="fastlmm.util.stats.quadform.qfc_src.wrap_qfc",
language="c++",
sources=["fastlmm/util/stats/quadform/qfc_src/wrap_qfc.pyx", "fastlmm/util/stats/quadform/qfc_src/QFC.cpp"],
include_dirs=[numpy.get_include()],
define_macros=macros)]
cmdclass = {'build_ext': build_ext, 'clean': CleanCommand}
else:
ext_modules = [Extension(name="fastlmm.util.stats.quadform.qfc_src.wrap_qfc",
language="c++",
sources=["fastlmm/util/stats/quadform/qfc_src/wrap_qfc.cpp", "fastlmm/util/stats/quadform/qfc_src/QFC.cpp"],
include_dirs=[numpy.get_include()],
define_macros=macros)]
cmdclass = {}
#python setup.py sdist bdist_wininst upload
setup(
name='fastlmm',
version=version,
description='Fast GWAS',
long_description=readme(),
keywords='gwas bioinformatics LMMs MLMs',
url="http://research.microsoft.com/en-us/um/redmond/projects/mscompbio/fastlmm/",
author='MSR',
author_email='[email protected]',
license='Apache 2.0',
packages=[
"fastlmm/association/tests",
"fastlmm/association",
"fastlmm/external/util",
"fastlmm/external",
"fastlmm/feature_selection",
"fastlmm/inference",
"fastlmm/pyplink/altset_list", #old snpreader
"fastlmm/pyplink/snpreader", #old snpreader
"fastlmm/pyplink/snpset", #old snpreader
"fastlmm/pyplink", #old snpreader
"fastlmm/util/runner",
"fastlmm/util/stats/quadform",
"fastlmm/util/stats/quadform/qfc_src",
"fastlmm/util/standardizer",
"fastlmm/util/stats",
"fastlmm/util",
"fastlmm",
],
package_data={"fastlmm/association" : [
"Fastlmm_autoselect/FastLmmC.exe",
"Fastlmm_autoselect/libiomp5md.dll",
"Fastlmm_autoselect/fastlmmc",
"Fastlmm_autoselect/FastLmmC.Manual.pdf"],
"fastlmm/feature_selection" : [
"examples/bronze.txt",
"examples/ScanISP.Toydata.config.py",
"examples/ScanLMM.Toydata.config.py",
"examples/ScanOSP.Toydata.config.py",
"examples/toydata.5chrom.bed",
"examples/toydata.5chrom.bim",
"examples/toydata.5chrom.fam",
"examples/toydata.bed",
"examples/toydata.bim",
"examples/toydata.cov",
"examples/toydata.dat",
"examples/toydata.fam",
"examples/toydata.iidmajor.hdf5",
"examples/toydata.map",
"examples/toydata.phe",
"examples/toydata.shufflePlus.phe",
"examples/toydata.sim",
"examples/toydata.snpmajor.hdf5",
"examples/toydataTest.phe",
"examples/toydataTrain.phe"
]
},
install_requires = ['scipy>=0.16.0', 'numpy>=1.9.3', 'pandas>=0.16.2','matplotlib>=1.4.3', 'scikit-learn>=0.16.1', 'pysnptools>=0.3.8', 'dill'],
cmdclass = cmdclass,
ext_modules = ext_modules,
)