-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.13 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
[project]
name = "onehead"
version = "1.59.0"
description = "A Dota 2 in-house league Discord bot."
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.13"
keywords = ["dota", "discord", "inhouse"]
dependencies = [
"aiohttp",
"dacite",
"discord.py>=2.6.0",
"pynacl",
"pytz",
"structlog",
"tabulate",
"types-tabulate",
"tinydb",
]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["onehead"]
exclude = ["secrets"]
[tool.ruff]
target-version = "py313"
line-length = 120
[tool.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort (import sorting)
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
[tool.lint.ruff.per-file-ignores]
"onehead/mental_health.py" = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"dpytest @ git+https://github.com/CraftSpider/dpytest.git@master",
"pytest>=8.4.1",
"pytest-cov>=7.0.0",
"ruff>=0.12.9",
]