-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "gino-admin"
version = "0.3.0"
description = "Admin Panel for PostgreSQL DB with Gino ORM"
authors = ["Iuliia Volkova <[email protected]>"]
license = "MIT"
readme = "docs/README.rst"
homepage = "https://github.com/xnuinside/gino-admin"
repository = "https://github.com/xnuinside/gino-admin"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.7"
Sanic-Jinja2 = "^2021.12.25"
passlib = "^1.7.4"
aiofiles = "^0.6.0"
PyYAML = "^5.3.1"
gino = "^1.0.1"
click = "^7.1.2"
sanic-jwt = "^1.6.0"
pydantic = "^1.5.1"
dsnparse = "^0.1.15"
expiring-dict = "^1.1.0"
sqlalchemy_utils = "^0.36.8"
sanic = "^21.3.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.3.0"
flake8 = "^3.7.9"
pytest-docker-compose = "^3.1.2"
pytest = "^5.4.2"
sphinx = "^3.0.3"
m2r2 = "^0.3.2"
twine = "^3.2.0"
black = "^20.8b1"
[tool.poetry.scripts]
gino-admin = 'gino_admin.cli:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"