-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.29 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cmd-manager"
version = "0.2.0"
description = "A framework-agnostic management command system for Python apps (FastAPI, Flask, Sanic, Starlette, or plain Python) inspired by Django management commands."
readme = "README.md"
license = "MIT"
authors = ["Muhammad Hassan Siddiqui <mhassan.eeng@gmail.com>"]
homepage = "https://github.com/mhsiddiqui/cmd-manager"
repository = "https://github.com/mhsiddiqui/cmd-manager"
include = ["cmd_manager/py.typed"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
keywords = ["management-commands", "cli", "click", "fastapi", "flask", "sanic", "starlette", "async"]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-asyncio = "^0.23"
tox = "^4.0"
black = "^23.0"
isort = "^5.12"
flake8 = "^6.0"
pre-commit = "^3.0"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100