-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (49 loc) · 1.29 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pipboy"
version = "0.0.1"
description = "Proxy for Fallout 4 Companion App"
authors = ["NimVek <NimVek@users.noreply.github.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/NimVek/pipboy"
classifiers = [
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Operating System :: OS Independent",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Development Status :: 3 - Alpha"
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = "^3.0.0"
pre-commit = "^2.5.1"
black = "^22.1"
flake8 = "^4.0.1"
mypy = "^0.931"
isort = "^5.0.4"
coveralls = "^3.3.1"
[tool.poetry.scripts]
pipboy = "pipboy:main"
[tool.isort]
line_length = 88
multi_line_output = 3
balanced_wrapping = true
atomic = true
lines_after_imports = 2
lines_between_types = 1
combine_star = true
include_trailing_comma = true
use_parentheses = true
known_first_party = "pipboy"
known_third_party = []
[tool.black]
line-length = 88