-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
53 lines (48 loc) · 1.04 KB
/
setup.cfg
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
[metadata]
name = harvest_python
version = 0.4.0
author = Harvest Team
description = Simple and intuitive python framework for algorithmic trading.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tfukaza/harvest/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.9
install_requires =
pandas >= 2.0.0
finta >= 1.0
pyyaml >= 5.0
tqdm >= 4.0.0
tzlocal >= 5.0
tzdata >= 2020.1
rich >= 13.0.0
SQLAlchemy >= 2.0.0
requests
[options.extras_require]
Alpaca =
alpaca-trade-api
Robinhood =
pyotp
robin_stocks
Webull =
webull
Kraken =
krakenex
Yahoo =
yfinance >= 0.2.38
Server =
flask
flask-login
flask-cors
Dev =
coverage
[options.entry_points]
console_scripts =
harvest = harvest.cli:main
[coverage:run]
source = harvest/