-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ssri"
version = "0.0.7"
authors = [
{ name="Sebastian Gazey", email="[email protected]"},
]
description = "A 2024 take on 2004 tech - effectively something that does what Apache Server Side Includes did, but at build time"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Build Tools"
]
[project.scripts]
ssri = "ssri.ssri:main"
[project.urls]
Homepage = "https://github.com/Sebagabones/Server-Side-Rendered-Includes"
[tool.pytest.ini_options]
pythonpath = [
"ssri"
]
#addopts = [
# "--import-mode=importlib",
#]
#testpaths = [
# "tests",
#]