-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 793 Bytes
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
[project]
name = "dailyword-bot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"python-telegram-bot==13.11",
"redis",
"oauth2client",
"gspread",
"pandas",
"pydrive",
"boto3>=1.28.0",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pytest-flake8",
"pytest-mock",
"flake8==4.0.1",
"fakeredis",
"autopep8",
"moto>=5.1.19",
"testcontainers[localstack]>=4.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "--strict-markers"
norecursedirs = [
"terraform",
".git",
".venv",
"__pycache__",
"*.egg-info",
"build",
"dist",
]