forked from lionel-panhaleux/codex-of-the-damned
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.47 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
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=68", "babel>=2", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "codex-of-the-damned"
dynamic = ["version"]
authors = [
{ name = "Lionel Panhaleux", email = "[email protected]" },
]
description = "Website on VTES Strategy, cards rulings and TWD search interface"
keywords = ["vtes", "Vampire: The Eternal Struggle", "CCG", "TWD", "TWDA"]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
dependencies = ["flask>=3", "flask-babel>=4", "unidecode>=1", "Jinja2>=3"]
[project.optional-dependencies]
dev = [
"black>=24",
"build>=1",
"check-manifest>=0",
"ipython>=8",
"pytest>=8",
"requests>=2",
"ruff>=0",
"setuptools_scm>=8",
"twine>=5",
]
[project.scripts]
codex = "codex_of_the_damned:main"
[project.urls]
Homepage = "https://codex-of-the-damned.org"
Repository = "https://github.com/lionel-panhaleux/codex-of-the-damned"
[tool.setuptools.packages.find]
include = ["codex_of_the_damned*"]
[tool.setuptools.package-data]
"*" = ["*.mo"]
[tool.setuptools_scm]