chore: updated build system
This commit is contained in:
parent
0ed7f26c7d
commit
f97bf06b5a
3 changed files with 30 additions and 34 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -127,3 +127,6 @@ dmypy.json
|
||||||
|
|
||||||
# Pyre type checker
|
# Pyre type checker
|
||||||
.pyre/
|
.pyre/
|
||||||
|
|
||||||
|
# Auto generated version file
|
||||||
|
src/treepuncher/__version__.py
|
||||||
|
|
|
@ -1,7 +1,30 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = ["setuptools", "setuptools-scm"]
|
||||||
"setuptools>=42",
|
|
||||||
"wheel"
|
|
||||||
]
|
|
||||||
build-backend = "setuptools.build_meta"
|
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",
|
||||||
|
]
|
||||||
|
dynamic = ["version"]
|
||||||
|
|
||||||
|
[tool.setuptools_scm]
|
||||||
|
write_to = "src/treepuncher/__version__.py"
|
||||||
|
|
30
setup.cfg
30
setup.cfg
|
@ -1,30 +0,0 @@
|
||||||
[metadata]
|
|
||||||
name = treepuncher
|
|
||||||
version = 0.2.1
|
|
||||||
author = alemi
|
|
||||||
author_email = me@alemi.dev
|
|
||||||
description = An hackable Minecraft client, built with aiocraft
|
|
||||||
long_description = file: README.md
|
|
||||||
long_description_content_type = text/markdown
|
|
||||||
url = https://github.com/alemidev/treepuncher
|
|
||||||
project_urls =
|
|
||||||
Bug Tracker = https://github.com/alemidev/treepuncher/issues
|
|
||||||
classifiers =
|
|
||||||
Programming Language :: Python :: 3
|
|
||||||
License :: OSI Approved :: MIT License
|
|
||||||
Operating System :: OS Independent
|
|
||||||
|
|
||||||
[options]
|
|
||||||
install_requires =
|
|
||||||
setproctitle
|
|
||||||
termcolor
|
|
||||||
apscheduler
|
|
||||||
aioconsole
|
|
||||||
aiocraft
|
|
||||||
package_dir =
|
|
||||||
= src
|
|
||||||
packages = find:
|
|
||||||
python_requires = >=3.6
|
|
||||||
|
|
||||||
[options.packages.find]
|
|
||||||
where = src
|
|
Loading…
Reference in a new issue