treepuncher/pyproject.toml

31 lines
776 B
TOML
Raw Normal View History

2022-02-20 13:12:50 +01:00
[build-system]
2023-06-03 13:43:02 +02:00
requires = ["setuptools", "setuptools-scm"]
2022-02-20 13:12:50 +01:00
build-backend = "setuptools.build_meta"
2023-06-03 13:43:02 +02:00
[project]
name = "treepuncher"
authors = [
{name = "alemi", email = "me@alemi.dev"},
]
description = "An hackable Minecraft client, built with aiocraft"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["minecraft", "client", "bot", "hackable"]
# license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"setproctitle",
"termcolor",
"apscheduler",
"aioconsole",
2023-11-20 18:55:01 +01:00
"aiocraft @ git+https://git.alemi.dev/aiocraft@v0.3.0",
2023-06-03 13:43:02 +02:00
]
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "src/treepuncher/__version__.py"