-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.01 KB
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 >= 77.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = { find = { include = ["stlr*"] } }
[tool.setuptools.dynamic]
version = {attr = "stlr.__version__"}
[project]
name = "Stlr"
description = "Stlr is a fast, modular & simple Python web framework."
readme="README.md"
license="BSD-3-Clause"
keywords = ["framework","web","stlr"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10"
]
dynamic = ["version"]
requires-python = ">= 3.10"
authors = [
{name="Tato",email="tato@tlet.xyz"}
]
maintainers = [
{name="Tato",email="tato@tlet.xyz"}
]
dependencies = [
"jinja2",
"python-dotenv",
"click",
"redis"
]
# [project.optional-dependencies]
# redis = ["redis"]
[project.scripts]
stlr = "stlr.cli:cli"
[project.urls]
Repository = "https://git.tlet.xyz/Tato/Stlr.git"
Issues = "https://git.tlet.xyz/Tato/Stlr/issues"
Changelog = "https://git.tlet.xyz/Tato/Stlr/blob/master/CHANGELOG.md"