-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.03 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
[project]
name = "py-ghst-tools"
version = "0.0.1"
description = "A collection of cadaverous World of Warcraft datamining tools"
authors = [
{ name="Ghostopheles", email="[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
]
requires-python = ">= 3.11"
dependencies = ["httpx[http2]", "typer", "pillow", "customtkinter"]
[project.scripts]
ghst = "ghst:handle_cli"
[project.urls]
Homepage = "https://github.com/Ghostopheles/py-ghst-tools"
Repository = "https://github.com/Ghostopheles/py-ghst-tools.git"
Issues = "https://github.com/Ghostopheles/py-ghst-tools/issues"
[build-system]
requires = ["setuptools", "wheel", "cibuildwheel"]
build-backend = "setuptools.build_meta"