-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (29 loc) · 954 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "django-mini-fastapi"
authors = [{name = "toki", email = "toki.kanno@gmail.com"}]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
]
dynamic = ["version", "description"]
requires-python = ">=3.6"
dependencies = [
"django >= 1.11",
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0",
]
[project.urls]
Home = "https://github.com/tokikanno/django-mini-fastapi"
[tool.flit.module]
name = "django_mini_fastapi"