-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.04 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
[tool.poetry]
name = "domjudge-utility"
version = "0.0.22"
description = "DOMjudge Utility"
authors = ["Dup4 <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0"
xlwt = "^1.3.0"
requests = "^2.31.0"
requests-toolbelt = "^1.0.0"
bs4 = "^0.0.1"
asyncio = "^3.4.3"
aiohttp = "^3.10.10"
aiodns = "^3.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
flake8 = "^6.0.0"
pyright = "^1.1.305"
autopep8 = "^2.0.2"
pytest-snapshot = "^0.9.0"
poetry-bumpversion = "^0.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry_bumpversion.replacements]]
files = ["domjudge_utility/version.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'