30 lines
776 B
TOML
30 lines
776 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[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",
|
|
"aiocraft @ git+https://git.alemi.dev/aiocraft@v0.3.0",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools_scm]
|
|
write_to = "src/treepuncher/__version__.py"
|