|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "marcus-scambaiter"
|
|
version = "1.0.0"
|
|
description = "An intelligent Telegram bot that automatically engages scammers using a believable persona to waste their time and protect others"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "retoor", email = "retoor@molodetz.nl"},
|
|
]
|
|
maintainers = [
|
|
{name = "retoor", email = "retoor@molodetz.nl"},
|
|
]
|
|
keywords = ["telegram", "scambaiting", "bot", "ai", "security", "anti-scam"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Communications :: Chat",
|
|
"Topic :: Security",
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
]
|
|
dependencies = [
|
|
"telethon==1.34.0",
|
|
"requests>=2.31.0",
|
|
"python-dotenv>=1.0.0",
|
|
"asyncio-throttle>=1.0.2",
|
|
"aiofiles>=23.2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"black>=23.0.0",
|
|
"isort>=5.12.0",
|
|
"flake8>=6.0.0",
|
|
"mypy>=1.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://retoor.molodetz.nl/retoor/"
|
|
Documentation = "https://github.com/retoor/marcus-scambaiter#readme"
|
|
Repository = "https://github.com/retoor/marcus-scambaiter.git"
|
|
Issues = "https://github.com/retoor/marcus-scambaiter/issues"
|
|
|
|
[project.scripts]
|
|
marcus = "marcus.cli:main"
|
|
marcus-scambaiter = "marcus.cli:main"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/marcus/__init__.py"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/README.md",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/marcus"]
|
|
|
|
[tool.black]
|
|
target-version = ["py38"]
|
|
line-length = 88
|
|
include = '\.pyi?$'
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
line_length = 88
|
|
|
|
[tool.mypy]
|
|
python_version = "3.8"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|