forked from rob-Hitchens/trading-bots
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
53 lines (49 loc) · 1.61 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
[tool.poetry]
name = "trading_bots"
version = "0.5.3"
description = "A simple framework for bootstrapping your Crypto Trading Bots"
authors = ["Sebastian Aranguiz <[email protected]>"]
license = "MIT"
readme="README.md"
repository="https://github.com/snake575/trading-bots"
homepage="https://github.com/snake575/trading-bots"
classifiers=[
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
[tool.poetry.dependencies]
python = "^3.6"
cached-property = "^1.5.1"
click = "^7.1.2"
importlib_metadata = {version = "^1.7.0", python = "<3.8"}
jinja2 = "^2.11.2"
maya = "^0.6.1"
pygogo = "^0.12.0"
pyyaml = "^5.3.1"
requests = "^2.24.0"
simple-settings = "^0.19.1"
stringcase = "^1.2.0"
trading-api-wrappers = "^0.16.10"
[tool.poetry.dev-dependencies]
black = {version = "^19.10b0", allow-prereleases = true}
coverage = "^5.2.1"
flake8 = "^3.8.3"
flake8-bugbear = "^20.1.4"
pytest = "^5.4.3"
[tool.poetry.scripts]
bots-admin = "trading_bots.core.management:cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"