From 59b73c33dc19c8e8c008edc2f18b20752fa6f013 Mon Sep 17 00:00:00 2001 From: mihalin Date: Tue, 18 Jan 2022 03:30:39 +0300 Subject: [PATCH] add poetry --- pyproject.toml | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dc0d281..826a805 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,24 @@ -[build-system] -requires = ["flit_core >=3.2,<4"] -build-backend = "flit_core.buildapi" - -[project] +[tool.poetry] name = "olgram" -authors = [{name = "civsocit", email = "feedback@civsoc.it"}] -dynamic = ["version", "description"] +version = "0.1.1" +description = "" +authors = ["Civ Soc "] +license = "CC0" + +[tool.poetry.dependencies] +python = "^3.8" +aiogram = "2.13" +python-dotenv = "^0.19.2" +aiocache = "^0.11.1" +aiohttp = "^3.8.1" +pycrypto = "^2.6.1" +aioredis = "1.3" +aerich = "0.5.4" +tortoise-orm = {extras = ["asyncpg"], version = "^0.18.1"} + +[tool.poetry.dev-dependencies] +flake8 = "^4.0.1" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"