-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (42 loc) · 1.11 KB
/
pyproject.toml
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
[tool.poetry]
name = "aio-q3-rcon"
version = "1.0.0"
description = "An async Quake 3 RCON implementation with a CLI"
authors = ["Milo Weinberg <iapetus011@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "aioq3rcon"}]
repository = "https://github.com/Iapetus-11/aio-q3-rcon"
keywords = ["quake3rcon", "quake3", "rcon", "q3", "q3rcon", "async", "asyncio"]
[tool.poetry.dependencies]
python = "^3.10"
asyncio-dgram = "^2.1.2"
[tool.poetry.group.dev.dependencies]
mypy = "^0.982"
flake8 = "^5.0.4"
isort = "^5.10.1"
black = "^22.10.0"
autoflake = "^1.7.5"
[tool.poetry.group.cli.dependencies]
validators = "^0.20.0"
anyio = "^3.6.1"
click = "^8.1.3"
[tool.poetry.scripts]
q3rcon = { callable = "aioq3rcon.cli:rcon", extras = ["cli"] }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
files = ["aioq3rcon/**/*.py"]
python_version = "3.10"
warn_unused_configs = true
namespace_packages = true
explicit_package_bases = true
strict = true