-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 892 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-in-underwear"
version = "0.6.0"
description = "A lightweight, Flask-inspired web framework for Python."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = []
[project.optional-dependencies]
templates = ["jinja2>=3.0"]
sessions = ["cryptography>=41.0"]
dev = ["watchdog>=3.0", "jinja2>=3.0", "pytest>=7.0"]
yaml = ["pyyaml>=6.0"]
db = ["sqlalchemy>=2.0", "aiosqlite>=0.19"]
db-pg = ["sqlalchemy>=2.0", "asyncpg>=0.29"]
db-mysql = ["sqlalchemy>=2.0", "aiomysql>=0.2"]
full = [
"jinja2>=3.0",
"watchdog>=3.0",
"pyyaml>=6.0",
"pytest>=7.0",
"sqlalchemy>=2.0",
"aiosqlite>=0.19",
]
[project.scripts]
piu = "piu.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["piu*"]