-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.67 KB
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
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pyflakes>=3.0.1",
"mypy>=1.0.1",
"ipython>=8.10.0",
]
[tool.pdm.scripts]
_.env_file = ".env"
import-matches = { call = 'oddsapi.commands:import_matches' }
import-static = { call = 'oddsapi.commands:import_static' }
autoimport = { call = 'oddsapi.commands:import_autoimport' }
delete-matches = { call = 'oddsapi.commands:delete_matches' }
delete-static = { call = 'oddsapi.commands:delete_static' }
delete-all = { call = 'oddsapi.commands:delete_all' }
delete-tgnotify = { call = 'oddsapi.commands:delete_notify' }
tg-bot = { call = 'oddsapi.commands:run_tgbot' }
tg-notify = { call = 'oddsapi.commands:telegram_notify' }
betcity-listener = { call = 'oddsapi.commands:betcity_listener' }
fonbet-listener = { call = 'oddsapi.commands:fonbet_listener' }
pinnacle-listener = { call = 'oddsapi.commands:pinnacle_listener' }
marathon-listener = { call = 'oddsapi.commands:marathon_listener' }
webui = { call = 'oddsapi.ui.gradioui:run' }
webui-dev = 'gradio oddsapi/ui/gradioui.py'
migrate = "alembic upgrade head"
worker = "arq oddsapi.queue.WorkerSettings"
[project]
name = ""
version = ""
description = ""
dependencies = [
"python-dotenv>=0.21.0",
"uvloop>=0.17.0",
"redis>=4.4.1",
"click>=8.1.3",
"httpx>=0.23.1",
"pyrogram>=2.0.93",
"arq>=0.25.0",
"tgcrypto>=1.2.5",
"psycopg[binary,pool]>=3.1.8",
# plotly and deps
"plotly>=5.11.0",
"numpy>=1.24.1",
"kaleido==0.2.1",
"dateparser>=1.1.6",
"Pillow>=9.4.0",
"SQLAlchemy>=2.0.3",
"asyncpg>=0.27.0",
"alembic>=1.9.3",
"gradio>=3.24.1",
"sentry-sdk>=1.19.1",
"setuptools>=67.6.1",
]
requires-python = ">=3.11"