-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.49 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "0trace"
version = "0.0.7.4"
description = "An immersive hacking simulation game set in a realistic Linux-like environment."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.md" }
authors = [
{ name = "CodingPengu007", email = "pengu@sky-network.org" },
{ name = "lionbaum" },
{ name = "DonerKebab1231" }
]
keywords = ["hacking", "game", "simulation", "linux", "multiplayer", "terminal"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Security",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop"
]
dependencies = [
"bcrypt",
"textual==0.89.1",
"textual_textarea==0.15.0",
"requests",
"maskpass",
"readline"
]
[project.urls]
"Homepage" = "https://github.com/CodingPengu007/0trace"
"Source" = "https://github.com/CodingPengu007/0trace"
"Bug Tracker" = "https://github.com/CodingPengu007/0trace/issues"
"Wiki" = "https://github.com/CodingPengu007/0trace/wiki"
[project.optional-dependencies]
dev = [
"ruff",
"pre-commit",
]
[project.scripts]
0trace = "main:main"
[tool.ruff]
exclude = [".Otrace_venv"]
[tool.ruff.lint]
select = ["F401", "FURB"]
per-file-ignores = {"**/__init__.py" = ["F401"]}