-
Notifications
You must be signed in to change notification settings - Fork 174
/
setup.py
67 lines (65 loc) · 1.85 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="lumibot",
version="3.8.9",
author="Robert Grzesik",
author_email="rob@lumiwealth.com",
description="Backtesting and Trading Library, Made by Lumiwealth",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lumiwealth/lumibot",
packages=setuptools.find_packages(),
install_requires=[
"polygon-api-client>=1.13.3",
"alpaca-py>=0.28.1",
"alpha_vantage",
"ibapi==9.81.1.post1",
"yfinance>=0.2.46",
"matplotlib>=3.3.3",
"quandl",
"numpy>=1.20.0",
"pandas>=2.2.0",
"pandas_datareader",
"pandas_market_calendars>=4.3.1",
"plotly>=5.18.0",
"flask>=2.2.2",
"sqlalchemy",
"flask-socketio",
"flask-sqlalchemy",
"flask-marshmallow",
"flask-security",
"marshmallow-sqlalchemy",
"email_validator",
"bcrypt",
"pytest",
"scipy>=1.13.0",
"ipython", # required for quantstats, but not in their dependency list for some reason
"quantstats-lumi>=0.3.3",
"python-dotenv", # Secret Storage
"ccxt>=4.3.74",
"termcolor",
"jsonpickle",
"apscheduler==3.10.4",
"appdirs",
"pyarrow",
"tqdm",
"lumiwealth-tradier>=0.1.12",
"pytz",
"psycopg2-binary",
"exchange_calendars>=4.5.2",
"duckdb",
"uuid",
"tabulate",
"thetadata",
"holidays",
"psutil",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)