-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 901 Bytes
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
[project]
name = "nfcli"
version = "1.19.2"
description = "A CLI tool to pretty print fleet and ship files to console."
requires-python = "==3.10.*"
authors = [{"name" = "Jaghaimo", "email" = "1764586+jaghaimo@users.noreply.github.com"}]
dependencies = [
"CairoSVG",
"arrow",
"fuzzywuzzy",
"inflect",
"py-cord",
"python-dotenv",
"rich",
"steam",
"xmltodict",
]
[dependency-groups]
dev = [
"debugpy",
"ruff",
]
[tool.poetry.scripts]
nfcli = "nfcli.__main__:main"
bot = "nfcli.bot:start"
steam = "nfcli.steam:cache_workshop_files"
tags = "nfcli.wiki:update_tags"
wiki = "nfcli.wiki:update_wiki"
[tool.ruff]
line-length = 120
lint.select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"UP",
"C4",
"SIM",
"ERA",
"PERF",
"RUF",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"