diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..debb032 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[project] +name = "trading-platform" +version = "0.1.0" +description = "Binance spot crypto trading platform" +requires-python = ">=3.12" + +[tool.pytest.ini_options] +asyncio_mode = "auto" +testpaths = ["shared/tests", "services", "cli/tests"] +addopts = "--import-mode=importlib" + +[tool.ruff] +target-version = "py312" +line-length = 100 |
