-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.02 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "anyrun-tg-bot"
version = "0.7.2"
description = "A Telegram bot for interacting with the ANY.RUN API"
authors = [
{ name = "Kirill Bykov", email = "[email protected]" }
]
readme = "README.md"
license = { text = "MIT License" }
keywords = ["anyrun", "any.run", "telegram", "bot", "api", "malware", "analysis", "security", "sandbox"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent"
]
dependencies = [
"python-telegram-bot>=21.6",
"python-dotenv>=1.0.1",
"aiosqlite>=0.20.0",
"aiohttp>=3.10.10",
"validators>=0.34.0",
"python-dateutil>=2.8.2",
"packaging>=23.2"
]
[project.urls]
Homepage = "https://any.run"
Repository = "https://github.com/bykovk-pro/anyrun-tg-bot"