-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.52 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
[project]
name = "modular-server-manager-web-server"
dynamic = ["version"]
description = "MSM Web Server"
authors = [
{ name = "Antoine BUIREY", email = "antoine.buirey@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"blinker==1.9.0",
"click==8.1.8",
"Flask==3.1.1",
"gamuLogger>=3.2.4",
"itsdangerous==2.2.0",
"Jinja2==3.1.6",
"MarkupSafe==3.0.2",
"typing_extensions==4.13.2",
"urllib3==2.5.0",
"Werkzeug==3.1.3",
"dnspython==2.7.0",
"eventlet==0.40.3",
"greenlet==3.2.1",
"python-socketio==5.14.0",
"http_code @ https://github.com/T0ine34/python-sample/releases/download/1.1.6/http_code-1.1.6-py3-none-any.whl",
"singleton @ https://github.com/T0ine34/python-sample/releases/download/1.1.6/singleton-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",
"modular-server-manager @ https://github.com/modular-server-manager/server/releases/download/0.1.4/modular_server_manager-0.1.4-py3-none-any.whl"
]
[tool.metadata.require]
modular-server-manager = ">=0.1.6,<1.0.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "env"
variable = "MSM_WEB_SERVER_VERSION"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
ignore-vcs = true
include = [
"modular_server_manager_web_server",
]
[tool.hatch.build.targets.sdist]
ignore-vcs = true
include = [
"modular_server_manager_web_server",
]