forked from TA-Lib/ta-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1.13 KB
/
setup.py
File metadata and controls
41 lines (34 loc) · 1.13 KB
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
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy
import sys
if sys.platform in ("linux2", "darwin"):
include_talib_dir = "/usr/local/include/"
lib_talib_dir = "/usr/local/lib/"
elif sys.platform == "win32":
include_talib_dir = r"c:\msys\1.0\local\include"
lib_talib_dir = r"c:\msys\1.0\local\lib"
else:
raise NotImplementedError(sys.platform)
ext = Extension("talib", ["talib.pyx"],
include_dirs=[numpy.get_include(), include_talib_dir],
library_dirs=[lib_talib_dir],
libraries=["ta_lib"]
)
setup(
name = 'TA-Lib',
version = '0.4.0',
description = 'Python wrapper for TA-Lib',
author = 'John Benediktsson',
author_email = 'mrjbq7@gmail.com',
url = 'http://github.com/mrjbq7/ta-lib',
download_url = 'http://github.com/mrjbq7/ta-lib/zipball/master#egg=TA-Lib-0.4.0',
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: BSD License",
],
ext_modules=[ext],
cmdclass = {'build_ext': build_ext}
)