-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.92 KB
/
pyproject.toml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "bedrockpy"
version = "1.0.0"
description = "Minecraft: Bedrock Edition Websocket Server"
authors = ["Jonas da Silva"]
maintainers = [
"Bedrock WS <[email protected]>",
"Jonas da Silva"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/bedrock-ws/bedrockpy/"
documentation = "https://bedrockpy.readthedocs.io/"
keywords = ["bedrock", "minecraft", "websocket"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Education",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
packages = [{include = "bedrock", from = "src"}]
include = ["src/bedrock/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
websockets = "^11.0.2"
attrs = "^23.2.0"
convert-case = "^1.1.1"
sphinx = {version = "^6.2.1", optional = true}
myst-parser = {version = "^1.0.0", extras = ["linkify"], optional = true}
sphinx-copybutton = {version = "^0.5.2", optional = true}
furo = {version = "^2023.3.27", optional = true}
sphinxcontrib-mermaid = {version = "^0.8.1", optional = true}
sphinxcontrib-video = {version = "^0.1.1", optional = true}
sphinx-notfound-page = {version = "^0.8.3", optional = true}
mypy = {version = "^1.2.0", optional = true}
tox = {version = "^4.5.1", optional = true}
uvloop = {version = "^0.17.0", optional = true}
sphinx-design = {version = "^0.4.1", optional = true}
[tool.poetry.extras]
docs = [
"sphinx",
"myst-parser",
"sphinx-copybutton",
"sphinx-design",
"furo",
"sphinxcontrib-mermaid",
"sphinxcontrib-video",
"sphinx-notfound-page",
]
dev = [
"mypy",
"tox",
]
fast = [
"uvloop",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"