-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
66 lines (62 loc) · 1.37 KB
/
pyproject.toml
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
[tool.poetry]
name = "futon"
version = "1.0.0"
description = "Create automated bots that trade for you while you sleep"
authors = ["Rohit Agrawal <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = ""
repository = "https://github.com/agrawal-rohit/futon"
documentation = "https://github.com/agrawal-rohit/futon"
keywords = [
"Stocks",
"Cryptocurrencies",
"Algorithmic Trading",
"Backtesting",
"Trading bots"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["CHANGELOG.md"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry.dependencies]
python = "^3.7"
python_binance = "1.0.10"
bokeh = "2.3.2"
TA_Lib = "0.4.20"
pandas = "^1.1.5"
numpy = "^1.20.3"
binance = "0.3"
Requests = "2.25.1"
tqdm = "4.61.1"
websocket_client = "1.1.0"
[tool.poetry.dev-dependencies]
coverage = "*"
flake8 = "*"
pipenv-to-requirements = "*"
pre-commit = "*"
black = "*"
Sphinx = "^4.0.2"
sphinx-press-theme = "^0.7.3"