forked from sekhansen/text-mining-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 1.03 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
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy
import sys
#Se GSL Library
#if sys.platform == "win32":
# include_gsl_dir = sys.exec_prefix.lower().split("anaconda")[0]+"anaconda\\gsl\\include"
# lib_gsl_dir = sys.exec_prefix.lower().split("anaconda")[0]+"anaconda\\gsl\\lib"
#else:
# include_gsl_dir = sys.exec_prefix+"\\include"
# lib_gsl_dir = sys.exec_prefix+"\\lib"
#ext = Extension("topicmodels.samplers.samplers_lda", ["topicmodels/samplers/samplers_lda.pyx"],
# include_dirs=[numpy.get_include(),
# include_gsl_dir],
# library_dirs=[lib_gsl_dir],
# libraries=["gsl","gslcblas","m"]
#)
ext = Extension("topicmodels.samplers.samplers_lda", ["topicmodels/samplers/samplers_lda.pyx"],
include_dirs=[numpy.get_include()]
)
setup(name = "topicmodels",
ext_modules=[ext],
packages=['topicmodels','topicmodels.LDA','topicmodels.samplers'],
package_data={'topicmodels': ['*.txt']},
cmdclass = {'build_ext': build_ext})