forked from pmorissette/bt
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
68 lines (59 loc) · 1.67 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
import codecs
import os
import re
from setuptools import setup
from setuptools.extension import Extension
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="morissette.philippe@gmail.com",
description="A flexible backtesting framework for Python",
keywords="python finance quant backtesting strategies",
url="https://github.com/pmorissette/bt",
license="MIT",
install_requires=["ffn>=0.3.5", "pyprind>=2.11"],
extras_require={
"dev": [
"black>=20.8b1",
"codecov",
"cython>=0.25",
"ffn>=0.3.5",
"flake8",
"flake8-black",
"matplotlib>=2",
"numpy>=1",
"pandas>=0.19",
"pyprind>=2.11",
"pytest",
"pytest-cov",
],
},
packages=["bt"],
long_description=local_file("README.rst").read().replace("\r\n", "\n"),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
],
ext_modules=ext_modules,
python_requires=">=3.7",
)