-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (52 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "dyne"
version = "1.0.7"
description = "A light weight Python async framework with batteries included."
authors = [{ name = "Tabot Kevin", email = "[email protected]" }]
dependencies = [
"starlette>=0.37.2",
"uvicorn[standard]>=0.29.0",
"aiofiles>=23.2.1",
"pyyaml>=6.0.1",
"requests>=2.31.0",
"jinja2>=3.1.3",
"rfc3986>=2.0.0",
"python-multipart>=0.0.9",
"chardet>=5.2.0",
"apispec>=1.0.0b1",
"whitenoise>=6.6.0",
"docopt>=0.6.2",
"requests-toolbelt>=1.0.0",
"graphene>=3.3",
"itsdangerous>=2.1.2",
"graphql-server>=3.0.0b7",
"marshmallow>=3.21.1",
"flask>=3.0.3",
"pydantic>=2.7.0",
"sqlalchemy>=2.0.29",
"a2wsgi>=1.10.7",
]
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.1.1",
"pytest-mock>=3.14.0",
"pytest-cov>=5.0.0",
"httpx>=0.27.0",
"strawberry-graphql>=0.246.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/dyne"]