-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (38 loc) · 1007 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
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "tortoise-cli"
version = "0.1.2"
description = "A cli tool for tortoise-orm, build on top of click and ptpython."
authors = ["long2ice <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/tortoise/tortoise-cli"
repository = "https://github.com/tortoise/tortoise-cli.git"
documentation = "https://github.com/tortoise/tortoise-cli"
keywords = ["tortoise", "shell", "cli", "tortoise-orm"]
packages = [
{ include = "tortoise_cli"}
]
include = ["CHANGELOG.md", "LICENSE", "README.md"]
[tool.poetry.dependencies]
python = "^3.7"
tortoise-orm = "*"
click = "*"
ptpython = "*"
tomlkit = "*"
[tool.poetry.dev-dependencies]
# test
pytest = "*"
pytest-xdist = "*"
pytest-sugar = "*"
# lint
black = "*"
flake8 = "*"
isort = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tortoise-cli = "tortoise_cli.cli:main"
[tool.aerich]
tortoise_orm = "examples.TORTOISE_ORM"