-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
45 lines (36 loc) · 1.03 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
# ===== Project info
[project]
dynamic = ["version"]
name = "asgineer"
description = "A really thin ASGI web framework"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Almar Klein" }]
keywords = ["ASGI", "web", "framework"]
requires-python = ">= 3.8"
dependencies = []
[project.optional-dependencies]
lint = ["ruff"]
docs = ["sphinx>7.2", "sphinx_rtd_theme"]
tests = ["pytest", "pytest-cov", "requests", "websockets", "uvicorn", "hypercorn", "daphne"]
dev = ["asgineer[lint,docs,tests]"]
[project.urls]
Homepage = "https://github.com/almarklein/asgineer"
Documentation = "https://asgineer.readthedocs.io"
Repository = "https://github.com/almarklein/asgineer"
# ===== Building
# To release:
# - bump version, commit, tag, push.
# - flit publish
# - Publish tag on GH and write release notes
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
# ===== Tooling
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["F", "E", "W", "B", "RUF"]
ignore = [
"E501", # Line too long
]