-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
40 lines (36 loc) · 895 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[project]
name = "deseos17"
version = "0.0.1"
authors = [
{ name = "Andrey Tikhonov", email = "[email protected]" },
]
description = "Wishlist with clean architecture"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"aiogram-dialog[tools]>=2.0.0",
"aiogram==3.*",
"fastapi==0.103.*",
"uvicorn==0.22.*",
"python-jose[cryptography]==3.3.*",
"typing-extensions~=4.7",
]
[project.optional-dependencies]
test = [
"pytest"
]
lint = [
"flake8"
]
[project.urls]
"Homepage" = "https://github.com/tishka17/deseos17"
"Bug Tracker" = "https://github.com/tishka17/deseos17/issues"