-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.82 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
[project]
name = "modular-server-manager"
version = "0.1.5"
description = "Modular Server Manager"
authors = [
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"argon2-cffi==25.1.0",
"beautifulsoup4==4.14.3",
"bs4==0.0.2",
"certifi==2026.1.4",
"charset-normalizer==3.4.4",
"distro==1.9.0",
"gamuLogger>=3.2.4",
"idna==3.11",
"requests>=2.32.4",
"soupsieve==2.7",
"typing_extensions==4.15.0",
"urllib3==2.6.0",
"cache @ https://github.com/T0ine34/python-sample/releases/download/1.1.6/cache-1.1.6-py3-none-any.whl",
"config @ https://github.com/T0ine34/python-sample/releases/download/1.1.6/config-1.1.6-py3-none-any.whl",
"version @ https://github.com/T0ine34/python-sample/releases/download/1.1.6/version-1.1.6-py3-none-any.whl",
]
[project.scripts]
modular-server-manager = "modular_server_manager.__main__:main"
modular-server-manager-event-decoder = "modular_server_manager.decode_event:main"
modular-server-manager-doc-gen = "modular_server_manager.gen_doc:main"
[tool.setuptools]
packages = ["modular_server_manager",
"modular_server_manager.bus",
"modular_server_manager.core",
"modular_server_manager.minecraft",
"modular_server_manager.minecraft.forge",
"modular_server_manager.minecraft.vanilla",
"modular_server_manager.user_interface",
"modular_server_manager.user_interface.database",
"modular_server_manager.utils",
]
package-data = { "modular_server_manager" = [
"config.json",
"minecraft/properties.xml",
"bus/events.xml",
"events_descriptions.json",
] }
include-package-data = true
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = [
"tests"
]