-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 990 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cthulhucli"
dynamic = ["version"]
description = "A command line interface for browsing cards from the Call of Cthulhu CCG and LCG."
readme = "README.md"
license = ""
authors = [
{ name = "Petter Nyström", email = "[email protected]" },
]
keywords = [
"call of cthulhu",
"cthulhu",
"ccg",
"lcg",
]
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]
cthulhucli = "cthulhucli:main"
[project.urls]
Homepage = "https://github.com/jimorie/cthulhucli"
[tool.hatch.version]
path = "cthulhucli.py"
[tool.hatch.build]
include = [
"/cthulhucli.py",
"/coc-ccg.db",
"/coc-lcg.db",
]
[tool.hatch.build.targets.sdist]
include = [
"/cthulhucli.py",
"/coc-ccg.db",
"/coc-lcg.db",
]