-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.1 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
[build-system]
build-backend = "flit_core.buildapi"
requires = [
"flit_core >=3.2,<4",
]
[project]
authors = [
{name = "Håvard Vidme", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"fastapi >=0.65.2",
]
dynamic = [
"description",
"version",
]
license = { file = "LICENSE" }
name = "fastapi-startup"
readme = "README.md"
requires-python = ">=3.6.1"
[project.optional-dependencies]
dev = [
"black",
"isort",
]
test = [
"pytest",
"requests",
]
[project.urls]
Home = "https://github.com/vidhav/fastapi-startup"
[tool.flit.module]
name = "fastapi_startup"
[tool.isort]
profile = "black"