-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 1.3 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
[project]
name = "oberoon"
version = "0.3.0"
description = "A lightweight ASGI web framework for Python, inspired by Starlette"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Samandar-Komilov", email = "voidpointer07@gmail.com" }]
requires-python = ">=3.12"
dependencies = ["anyio>=4.12.1", "jinja2>=3.1.6", "msgspec>=0.20.0"]
keywords = ["asgi", "framework", "web"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/Samandar-Komilov/oberoon"
Repository = "https://github.com/Samandar-Komilov/oberoon"
Issues = "https://github.com/Samandar-Komilov/oberoon/issues"
[dependency-groups]
dev = [
"anyio[trio]>=4.12.1",
"httpx>=0.28.1",
"pre-commit>=4.5.1",
"pytest>=8.3.2",
"pytest-anyio>=0.0.0",
"pytest-cov>=5.0.0",
"ty>=0.0.21",
"uvicorn>=0.41.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = ["."]