-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 909 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
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcpywrap"
version = "0.2.3"
description = "A wrapper for Minecraft China Edition Addons management"
readme = "README.md"
authors = [{name = "boybook", email = "boybook@easecation.net"}]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"click>=8.0.0",
"watchdog>=2.0.0",
"twine>=3.4.0",
"tomli",
"tomli-w",
"setuptools",
"PyQt5>=5.15.0",
"psutil>=5.8.0",
"rich>=10.0.0"
]
[project.scripts]
mcpywrap = "mcpywrap.__main__:main"
mcpy = "mcpywrap.__main__:main"
[project.urls]
"Homepage" = "https://github.com/EaseCation/mcpywrap"
"Bug Tracker" = "https://github.com/EaseCation/mcpywrap/issues"