blob: bab9dcf55558016ce626036a4348063b29f76abe (
plain)
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
|
[project]
name = "website"
version = "0.1.0"
description = "My website"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"flask>=3.1.0",
"houdini-py>=0.1.0",
"jinja2==3.1.4",
"lxml>=5.3.1",
"mistune==2.0.3",
"pastescript==3.2.0",
"pygments>=2.19.1",
"waitress>=3.0.2",
]
[tool.uv]
package = true
[tool.setuptools]
py-modules = ['app', 'database', 'parser']
[project.scripts]
start-website = "app:main"
|