-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 960 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools>=69.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "trader"
version = "0.2.0"
description = "Bender - automated cryptocurrency trading bot for Bitvavo"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"python-bitvavo-api>=1.4.3",
"python-dotenv>=1.0.0",
"numpy>=1.26",
"pandas>=2.0",
"pandas-ta>=0.4.67b0",
"textual>=0.47.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"ruff>=0.4",
"mypy>=1.3.0",
]
[project.scripts]
trader = "trader.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests that hit the live Bitvavo API (deselected by default; run with -m integration)",
]
addopts = "-m 'not integration'"
[tool.ruff]
target-version = "py312"
line-length = 160
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B"]