-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 897 Bytes
/
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
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "thronescli"
dynamic = ["version"]
description = "A command line interface for the thronesdb.com card database."
readme = "README.md"
authors = [
{ name = "Petter Nyström", email = "[email protected]" },
]
keywords = [
"game of thrones",
"thrones",
"thronesdb.com",
]
classifiers = []
dependencies = [
"click>=8.1.6,<9.0",
"clicksearch>=0.5.0,<1.0",
]
requires-python = ">= 3.6"
[project.optional-dependencies]
dev = ["black", "ruff", "twine", "build", "hatchling", "bump"]
[project.scripts]
thronescli = "thronescli:main"
[project.urls]
Download = "https://github.com/jimorie/thronescli/archive/v3.0.0.tar.gz"
Homepage = "https://github.com/jimorie/thronescli"
[tool.hatch.version]
path = "thronescli.py"
[tool.hatch.build.targets.sdist]
include = [
"/thronescli.py",
]