-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.05 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arel"
description = "Browser hot reload for Python ASGI web apps"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Florimond Manca", email = "florimond.manca@protonmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"starlette==0.*",
"watchfiles>=0.18,<2.0",
]
dynamic = ["version", "readme"]
[project.urls]
"Homepage" = "https://github.com/florimondmanca/arel"
[tool.setuptools.dynamic]
version = { attr = "arel.__version__" }
readme = { file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown" }