-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (40 loc) · 1001 Bytes
/
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
[tool.poetry]
name = "nekontrol"
version = "0.2.5"
description = "A program for testing Kattis solutions with input and output."
authors = [
"Emanuel S <emanuel@empa.xyz>",
]
readme = "README.md"
homepage = "https://github.com/Quaqqer/nekontrol"
repository = "https://github.com/Quaqqer/nekontrol"
keywords = ["kattis", "competitive programming"]
packages = [
{ include = "nekontrol", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
termcolor = "^2.3.0"
requests = "^2.31.0"
appdirs = "^1.4.4"
natsort = "^8.4.0"
rich = "^13.6.0"
lxml = "^4.9.3"
[tool.poetry.scripts]
nk = 'nekontrol.interactive.cli:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
flake8 = "^6.1.0"
pytest = "^7.4.0"
pyright = "^1.1.331"
isort = "^5.12.0"
[tool.pyright]
reportIncompatibleMethodOverride = true
pythonVersion = "3.11"
[tool.isort]
profile = "black"
src_paths = ["src", "test"]