-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (33 loc) · 893 Bytes
/
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
[tool.poetry]
name = "tradealpha"
version = "0.1.0"
description = "Social Journaling and Analytics Platform for Traders"
authors = ["jacksn"]
packages = [
{ include = "projects" }
]
[tool.poetry.dependencies]
python = ">=3.10, <3.11"
api = {path = "projects/api", develop = true}
collector = {path = "projects/collector", develop = true}
bot = {path = "projects/bot", develop = true}
toml = "^0.10.2"
[tool.poetry.scripts]
api = "projects.api.__main__:run"
bot = "projects.bot.__main__:run"
collector = "projects.collector.__main__:run"
[tool.poetry.group.dev.dependencies]
pytest = "7.1.2"
ruff = "0.0.284"
black = "^23.7.0"
mypy = "^1.4.1"
pre-commit = "^3.3.3"
[tool.ruff]
exclude = ["alembic"]
ignore = ["E501", "F821", "F403", "F405"]
[tool.black]
line-length = 88
exclude = "alembic"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"