-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 1.03 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
[tool.poetry]
name = "ts3bot"
version = "0.2.0"
description = "A TeamSpeak bot for assigning server groups based on the user's world in Guild Wars 2."
authors = ["Yannick Linke <invisi@0x0f.net>"]
license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.11"
alembic = "^1.7.7"
pydantic = { version = "^1.10.11", extras = ['dotenv'] }
python-i18n = "^0.3.9"
requests = "^2.27.1"
sentry-sdk = "*"
sqlalchemy = { version = "^1.4.0", extras = ['mysql'] }
ts3 = "2.0.0b3"
[tool.poetry.dev-dependencies]
requests-mock = "^1.9.3"
sqlalchemy-stubs = "^0.4"
coverage = "*"
types-requests = "^2.27.26"
types-setuptools = "^68.0.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4.1"
[tool.black]
target-version = ['py311']
[tool.ruff]
fix = true
select = ["E", "F", "I", "UP", "N", "B", "Q", "PLC", "PLE", "PLR", "PLW"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"ts3bot/database/migrations/env.py" = ["E402"]
"ts3bot/__init__.py" = ["PLR2004"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"