-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 1.01 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cmd-manager"
version = "0.1.0"
description = "A management command system for FastAPI and Flask inspired by Django management commands."
readme = "README.md"
license = "MIT"
authors = ["Muhammad Hassan Siddiqui <[email protected]>"]
homepage = "https://github.com/mhsiddiqui/cmd-manager"
repository = "https://github.com/mhsiddiqui/cmd-manager"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Framework :: FastAPI",
"Typing :: Typed",
]
keywords = ["fastapi", "flask", "starlette", "management-commands"]
[tool.poetry.dependencies]
click = "^8.0"