forked from pmorissette/bt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (49 loc) · 1.33 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
from setuptools import setup
from setuptools.extension import Extension
import codecs
import os
import re
def local_file(filename):
return codecs.open(
os.path.join(os.path.dirname(__file__), filename), 'r', 'utf-8'
)
version = re.search(
"^__version__ = \((\d+), (\d+), (\d+)\)",
local_file(os.path.join('bt', '__init__.py')).read(),
re.MULTILINE
).groups()
try:
from Cython.Build import cythonize
except ImportError:
use_cython = False
else:
use_cython = True
ext_modules = []
if use_cython:
ext_modules = cythonize('bt/core.py')
else:
ext_modules = [
Extension('bt.core', ['bt/core.c'])
]
setup(
name="bt",
version='.'.join(version),
author='Philippe Morissette',
author_email='[email protected]',
description='A flexible backtesting framework for Python',
keywords='python finance quant backtesting strategies',
url='https://github.com/pmorissette/bt',
install_requires=[
'ffn',
'pyprind>=2.10'
],
packages=['bt'],
long_description=local_file('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python'
],
ext_modules=ext_modules,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
)