-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "manage-fastapi"
description = "Managing FastAPI projects made easy."
version = "1.1.1"
authors = [
{ name = "Yagiz Degirmenci", email = "[email protected]" },
{ name = "Marcelo Trylesinski", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"cookiecutter >= 1.7.2",
"pydantic[email] >= 1.7.2",
"questionary >= 1.10.0",
"typer >= 0.4, < 0.10",
]
[project.urls]
Homepage = "https://github.com/ycd/manage-fastapi"
Documentation = "https://github.com/ycd/manage-fastapi"
Source = "https://github.com/ycd/manage-fastapi"
[project.scripts]
fastapi = 'manage_fastapi.main:app'