forked from quantfreedom/QuantFreedom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
82 lines (79 loc) · 2.62 KB
/
Copy pathsetup.py
File metadata and controls
82 lines (79 loc) · 2.62 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
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8", errors="ignore") as fh:
long_description = fh.read()
version = {}
with open("quantfreedom/_version.py", encoding="utf-8") as fp:
exec(fp.read(), version)
setup(
name="quantfreedom",
version=version["__version__"],
description="Python library for backtesting and analyzing trading strategies at scale",
author="Quant Freedom",
author_email="QuantFreedom1022@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/QuantFreedom1022/quantfreedom",
packages=find_packages(),
install_requires=[
"autopep8",
"ccxt",
"dash",
"dash_bootstrap_templates",
"h5py",
"ipywidgets==7.7.2",
"jupyter-dash",
"jupyterlab-widgets==1.1.1",
"kaleido==0.1.0post1",
"mypy_extensions",
"notebook",
"tqdm",
'numba>=0.53.1; python_version < "3.10"',
'numba>=0.56.0; python_version >= "3.10"',
"numpy>=1.16.5",
"pandas",
"polars",
"pyarrow",
"tables",
'typing_extensions; python_version < "3.8"',
],
extras_require={
"web": [
"Markdown",
"PyYAML",
"black",
"mkdocs",
"mkdocs-autorefs",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocs-minify-plugin",
"mkdocs-open-in-new-tab",
"mkdocs-section-index",
"mkdocs-video",
"mkdocstrings",
"mkdocstrings-python",
"pymdown-extensions",
"tabulate",
]
},
python_requires=">=3.6, <3.11",
license='Apache 2.0 with Commons Clause',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
'License :: Free for non-commercial use',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)