-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.13 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
[options]
include_package_data = true
[tool.poetry.scripts]
cmdo = "crypto_commando.main:main"
defi = "crypto_commando.main:main"
schedule = "crypto_commando.daemon.service:main"
[tool.poetry]
name = "crypto_commando"
version = "0.1.0"
description = "Automate farming, swapping, and staking of DeFi assets. Self Custodial."
authors = ["Scott Nixon <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
flashbots = "^0.4.3"
pyfiglet = "^0.8.post1"
prompt-toolkit = "^3.0.19"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
ptipython = "^1.0.1"
pytest = "^6.2.4"
flake8 = "^4.0.1"
click = "8.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = 6.0
# addopts = "-ra -s --cov-report term-missing --cov=crypto_commando tests/"
addopts = "-ra -s"
testpaths = ["tests"]
[tool.isort]
profile = "black"
include_trailing_comma = true
line_length = 88
multi_line_output = 3
combine_as_imports = "true"
# [tool.black]
# line_length = 88
[tool.pycodestyle]
count = "false"
#ignore = E226,E302,E41
max-line-length = 120
statistics = "true"