-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (55 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "tvt_agents"
version = "0.1.0-a797860"
description = "Distributed agents framework for the TvTrader suite"
authors = ["Zoltan Fabian <zoltan.dzooli.fabian@gmail.com>"]
keywords = ["potery", "messaging", "distributed", "trading", "multithread"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
aio-pika = "^9.0"
wsaccel = "^0.6.7"
ws4py = "^0.5.1"
attrs = "^23.1.0"
asyncclick = "^8.1.3.4"
anyio = ">4.6.0"
urllib3 = "^2.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
ruff = "^0.1.2"
black = {extras = ["d"], version = "^24.3.0"}
mypy = {extras = ["d"], version = "^1.9.0"}
allure-pytest = "^2.13.2"
pytest-click = "^1.1.0"
pytest-cov = "^4.1.0"
pytest-html-reporter = "^0.2.9"
pytest-json-report = "^1.5.0"
pytest-otel = "^1.5.0"
pytest-mock = "^3.12.0"
pytest-live = "^0.6"
pytest-sugar = "^1.0.0"
pytest-agent = "^0.0.5"
pytest-bdd = "^7.1.1"
pytest-asyncio = "^0.23.5.post1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tvtrader_distributor = "tvt_agents.__main__:main"
[tool.mypy]
python_version="3.12"
python_executable=".venv/Scripts/python.exe"
ignore_missing_imports=true