-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 1.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "maglab_events_bot"
version = "0.1.0"
description = ""
authors = ["Ben Cheng"]
packages = [
{ include = "maglab_events_bot", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "4.12.3"
cairosvg = "2.7.1"
discord-py = "2.4.0"
icalendar = "5.0.13"
lxml = "5.3.0"
aiohttp = ">=3.10.6,<4"
pandas = "2.2.3"
pendulum = "3.0.0"
pillow = "10.4.0"
pydantic = "2.9.2"
pydantic-settings = "2.5.2"
python-dateutil = "2.9.0.post0"
pytz = "2024.2"
requests = "2.32.4"
urllib3 = "2.2.3"
[tool.poetry.dev-dependencies]
nox = "2024.4.15"
pytest = "8.3.2"
ruff = "0.6.8"
mypy = "1.11.2"
types-requests = "2.32.0.20240905"
types-python-dateutil = "2.9.0.20240821"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
target-version = "py310"
src = ["src", "tests"]
line-length = 100
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"W",
"B",
"C4",
"N",
]
ignore = [
"E501",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.10"
packages = ["maglab_events_bot"]
ignore_missing_imports = true
warn_unused_ignores = true
show_error_codes = true
pretty = true
[tool.poetry.scripts]
maglab-events-bot = "maglab_events_bot.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"