-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (47 loc) · 1.83 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
55
56
57
[build-system]
requires = [ "setuptools>=42", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "ccpstencil"
dynamic = ["version"]
description = "An Alviss powered Template renderer where the context input can be files and entire directory structures can be rendered."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Thordur Matthiasson", email = "thordurm@ccpgames.com" }
]
keywords = [ "alviss", "template", "render", "jinja2", "tools", "ccp", "utils" ]
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = [
"ccptools >=1.1, <2",
"alviss >= 3.3, <4",
"jinja2 >= 3.1, <4"
]
[project.scripts]
ccp-stencil = "ccpstencil.cli.ccp_stencil.main:main"
[project.urls]
Homepage = "https://github.com/ccpgames/ccp-stencil"
Documentation = "https://github.com/ccpgames/ccp-stencil/blob/main/README.md"
Repository = "https://github.com/ccpgames/ccp-stencil.git"
Issues = "https://github.com/ccpgames/ccp-stencil/issues"
Changelog = "https://github.com/ccpgames/ccp-stencil/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "ccpstencil.__version__"}
[tool.setuptools.packages.find]
where = [ "." ]
exclude = [ "tests", "tests.*" ]