-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 842 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "endstone-euphoriamessages"
version = "1.0.4"
description = "Advanced join/leave messages for Endstone"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Rep Graphics" }]
keywords = ["endstone", "plugin", "messages"]
dependencies = ["endstone>=0.11.0"]
[project.optional-dependencies]
mysql = ["mysql-connector-python"]
[project.urls]
Homepage = "https://github.com/EuphoriaDevelopmentOrg/EuphoriaMessages-Endstone"
[project.entry-points."endstone"]
euphoriamessages = "euphoriamessages:EuphoriaMessagesPlugin"
[tool.hatch.build.targets.wheel]
packages = ["src/euphoriamessages"]
include = ["src/euphoriamessages/config.toml"]
[tool.hatch.build.targets.sdist]
include = ["src/euphoriamessages", "README.md", "pyproject.toml"]