-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (47 loc) · 1.13 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "kup"
version = "0.2.4"
description = "kup is a tool for managing installations of the K framework along with the different available semantics"
authors = [
"Runtime Verification, Inc. <[email protected]>",
]
[tool.poetry.scripts]
kup = "kup.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
terminaltables = "^3.1.10"
requests = "^2.28.1"
types-requests = "^2.28.11"
rich = "^12.6.0"
pyxdg = "^0.28"
tinynetrc = "^1.3.1"
git-url-parse = "^1.2.2"
[tool.poetry.group.dev.dependencies]
autoflake = "*"
black = "*"
flake8 = "*"
flake8-bugbear = "*"
flake8-comprehensions = "*"
flake8-quotes = "*"
isort = "*"
mypy = "*"
pep8-naming = "*"
[tool.isort]
profile = "black"
line_length = 120
[tool.autoflake]
recursive = true
expand-star-imports = true
remove-all-unused-imports = true
ignore-init-module-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true