forked from Arfey/aiohttp_admin2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.05 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
[tool.poetry]
name = "aiohttp_admin2"
version = "0.0.1"
description = "Generator an admin interface based on aiohttp."
authors = ["Mykhailo Havelia <[email protected]>"]
maintainers = ["Mykhailo Havelia <[email protected]>"]
license = "MIT"
readme = 'README_BUILD.rst'
homepage = "https://github.com/arfey/aiohttp_admin2"
repository = "https://github.com/arfey/aiohttp_admin2"
documentation = "https://aiohttp-admin2.readthedocs.io"
keywords = ["aiohttp_admin2", "admin interface", "aiohttp"]
packages = [
{ include = "aiohttp_admin2" },
{ include = "aiohttp_admin2/**/*" },
]
exclude = ["tests/**/*"]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.6.3"
aiohttp-jinja2 = "^1.4.2"
aiopg = "^1.3.0"
SQLAlchemy = "^1.4.20"
sqlalchemy-stubs = "^0.4"
aiomysql = "^0.0.21"
motor = "^2.4.0"
umongo = "^3.0.0"
python-dateutil = "^2.8.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"