-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
103 lines (94 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "exchange-radar"
version = "1.7.0"
description = "Live trading information from various cryptocurrency exchanges."
authors = ["Paulo Antunes <pjmlantunes@gmail.com>"]
license = "GNU GPLv3"
readme = "README.md"
homepage = "https://exchangeradar.tech"
repository = "https://github.com/pantunes/exchange-radar"
keywords=[
"cryptocurrency",
"bitcoin", "btc",
"ethereum", "eth",
"chainlink", "link",
"trading",
"crypto exchanges",
"exchange",
"crypto",
"binance",
"coinbase",
"kraken",
"kucoin",
"okx",
"bybit",
"bitstamp",
"mexc",
"htx",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
]
packages = [{include = "exchange_radar"}]
[tool.poetry.dependencies]
python = "^3.12"
starlette = "^0.37.2"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
jinja2 = "^3.1.2"
environs = "^11.0.0"
pydantic = "^2.0"
click = "^8.1.5"
# exchanges
python-binance = "^1.0.17"
copra = "^1.2.9"
python-kucoin = "^2.1.3"
python-okx = "^0.2.6"
pybit = "^5.6.2"
pymexc = "^1.0.10"
# /exchanges
pika = "^1.3.2"
requests = "^2.31.0"
urllib3 = "^1.26.16"
redis-om = "^0.2.1"
types-requests = "2.31.0.0"
python-telegram-bot = "^21.1.1"
huey = "^2.5.0"
[tool.poetry.group.tests.dependencies]
pytest = "^7.4.0"
coverage = "^7.2.7"
pytest-asyncio = "^0.23.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
ipython = "^8.14.0"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
producer = "exchange_radar.producer.main:main"
consumer = "exchange_radar.consumer.main:main"
scheduler = "exchange_radar.scheduler.main:main"
[tool.pytest.ini_options]
addopts = "-vv"
[tool.coverage.run]
include = ["exchange_radar/**"]
omit = ["**/settings/*", "**/tests/*", "**/static/*", "**/templates/*"]
[tool.black]
line-length = 119
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = ["exchange_radar"]
skip = ["venv/"]