-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.07 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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "decemvirate"
description = "A FLOSS Pathfinder TTRPG helper"
authors = [
{ name = 'Sven "DrMcCoy" Hesse', email = "[email protected]" }
]
readme = "README.md"
license = { file = "COPYING" }
classifiers = [
"Private :: Do No Upload",
"License :: OSI Approved :: GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)",
"Topic :: Games/Entertainment :: Role-Playing",
"Framework :: Flask"
]
keywords = [ "rpg", "ttrpg", "roleplaying", "pathfinder", "pathfinder1e", "paizo", "translation" ]
requires-python = ">=3.10"
dependencies = [
"Flask",
"waitress"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"types-setuptools",
"types-waitress",
"isort",
"autopep8",
"flake8",
"mypy",
"pylint"
]
[project.urls]
homepage = "https://github.com/DrMcCoy/decemvirate"
[project.scripts]
decemvirate = "decemvirate:main"
[tool.setuptools-git-versioning]
enabled = true
version_callback = "src.version:get_version"