-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 986 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 986 Bytes
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
[project]
name = "anystat"
version = "0.1.0"
description = "Lightweight analytics library for Telegram bots built with aiogram 3"
readme = "README.md"
authors = [
{ name = "vexie", email = "vexiedesing@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"aiogram>=3.28.2",
"httpx>=0.28.1",
"pydantic>=2"
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["telegram", "aiogram", "analytics", "bot", "statistics"]
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/ivan-nechaev/anystat-python"
Repository = "https://github.com/ivan-nechaev/anystat-python"
Issues = "https://github.com/ivan-nechaev/anystat-python/issues"
[build-system]
requires = ["uv_build>=0.11.16,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.4.0",
"ruff>=0.15.16",
]