-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
37 lines (32 loc) · 1.17 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
[build-system]
requires = ["poetry_core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "portablemc"
version = "4.4.1"
description = "PortableMC is a module that provides both an API for development of your custom launcher and an executable script to run PortableMC CLI."
authors = ["Théo Rozier <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/mindstorm38/portablemc"
repository = "https://github.com/mindstorm38/portablemc"
documentation = "https://github.com/mindstorm38/portablemc"
keywords = ["minecraft", "launcher", "portable", "cli"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console"
]
[tool.poetry.dependencies]
# We want to keep the Minimum Supported Python Version to the oldest non-end-of-life
# version. See https://devguide.python.org/versions/
python = ">=3.8"
certifi = { version = "*", optional = true }
[tool.poetry.group.test.dependencies]
pytest = "*"
toml = "*"
coverage = "*"
[tool.poetry.scripts]
portablemc = "portablemc.cli:main"
[tool.poetry.extras]
certifi = ["certifi"]