-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (55 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
59 lines (55 loc) · 1.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "fastapi-amis"
version = "0.0.1"
description = "FastAPI Amis"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "kylin", email = "260987762@qq.com"}
]
dependencies = []
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"fastapi-users[beanie]>=14.0.1",
"fastapi[standard]>=0.117.1",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"mkdocs-material>=9.6.21",
"pydantic>=2.5.0,<2.10.0",
"pydantic-settings>=2.11.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"ujson>=5.11.0",
]
[project.urls]
Homepage = "https://github.com/InfernalAzazel/fastapi-amis"
Documentation = "https://infernalazazel.github.io/fastapi-amis/"
Repository = "https://github.com/InfernalAzazel/fastapi-amis"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["fastapi_amis"]