-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiogram-deta"
description = 'aiogram Deta.space integration'
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = [
"aiogram",
"deta",
]
authors = [
{ name = "Alex Root Junior", email = "jroot.junior@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"aiogram==3.0.0rc1",
"deta[async]==1.2.0",
"fastapi==0.101.1",
"uvicorn==0.23.2"
]
dynamic = ["version"]
[project.optional-dependencies]
[project.urls]
Documentation = "https://github.com/aiogram/deta#readme"
Issues = "https://github.com/aiogram/deta/issues"
Source = "https://github.com/aiogram/deta"
[tool.hatch.version]
path = "aiogram_deta/__about__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"example_bot",
"main.py",
".deta",
]