forked from sqproxy/sqproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "source-query-proxy"
version = "2.4.0"
description = "Async proxy for Source Engine Query Protocol"
authors = ["spumer <spumer-tm@yandex.ru>"]
license = "GPL-3.0"
homepage = "https://github.com/sqproxy/sqproxy"
readme = 'README.rst'
keywords = ['valve', 'source', 'engine', 'proxy', 'query', 'cache']
[tool.poetry.dependencies]
python = "^3.7"
uvloop = ">=0.16.0"
pylru = "^1.2.0"
pydantic = {extras = ["dotenv"], version = "^1.4"}
pyyaml = "^6.0"
pid = ">=2.2,<4.0"
python-dotenv = ">=0.10.3,<0.15.0"
asyncio_dgram = "^2.1.0"
backoff = "^2.1.0"
async-timeout = "^3.0"
click = "^7.0"
pyroute2 = "^0.7.5"
sentry-sdk = ">1.14.0"
cached-property = "^1.5.2"
[tool.poetry.dev-dependencies]
pytest-asyncio = "^0.14.0"
pytest = "^6"
bumpversion = "^0.5.3"
unify = "^0.5"
flake8-awesome = "^1.2"
black = "^20.8b1"
pytest-cov = "^2.10"
pytest-deadfixtures = "^2.2.1"
pytest-env = "^0.6.2"
pytest-mock = "^3.5.1"
[tool.poetry.scripts]
sqproxy = "source_query_proxy.cli:sqproxy"
[tool.commitizen] # https://commitizen-tools.github.io/commitizen/config/
bump_message = "bump(release): v$current_version → v$new_version"
tag_format = "v$version"
version = "2.4.0"
version_files = [
"pyproject.toml:version",
"source_query_proxy/__init__.py",
"README.rst",
]
[tool.poetry.group.dev.dependencies]
cruft = "^2.12.0"
commitizen = "^2.42.0"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"