-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.17 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
[project]
name = "grupy-sanca-agenda-bot"
version = "0.1.0"
description = "Bot do Telegram que retorna os eventos do Meetup do grupy-sanca"
authors = [
{name = "Juliana Karoline", email = "julianaklulo@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"APScheduler>=3.11.0",
"beautifulsoup4>=4.12.3",
"httpx>=0.28.1",
"pydantic>=2.10.3",
"pydantic-settings>=2.6.1",
"python-dotenv>=1.0.1",
"python-telegram-bot>=21.9",
"sqlalchemy>=2.0.44",
]
[dependency-groups]
dev = [
"ipython>=9.4.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
"pytest-env>=1.1.5",
"respx>=0.21.1",
"ruff>=0.8.2",
"freezegun>=1.5.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
env = [
"TELEGRAM_BOT_TOKEN = 123",
"URL = https://eventos.grupysanca.com.br",
"GROUP_CHAT_ID = 123",
"ADMINS = [123, 321]",
]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "auto"
[tool.ruff]
line-length = 110
lint.select = ["I", "C", "E", "F"]
lint.extend-select = ["I"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
start-bot = "grupy_sanca_agenda_bot.main:main"