File: pyproject.toml

package info (click to toggle)
telegram-send 0.39.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: python: 561; sh: 22; makefile: 5
file content (57 lines) | stat: -rw-r--r-- 1,515 bytes parent folder | download
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
50
51
52
53
54
55
56
57
[project]
name = "telegram-send"
dynamic = ["version"]
description = "Send messages and files over Telegram from the command-line."
readme = "README.md"
authors = [
    {name = "Rahiel Kasim", email = "rahielkasim@gmail.com"}
]
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "Intended Audience :: Developers",
    "Intended Audience :: End Users/Desktop",
    "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
    "Operating System :: POSIX",
    "Operating System :: Microsoft :: Windows",
    "Programming Language :: Python :: 3.9",
    "Topic :: Communications :: Chat",
    "Topic :: Utilities"
]
keywords = ["telegram", "send", "message", "file"]
dependencies = [
    "colorama>=0.4.6 ; sys_platform == 'win32'",
    "platformdirs>=4.5.1",
    "python-telegram-bot==22.5",
]

[project.urls]
homepage = "https://github.com/rahiel/telegram-send"
issues = "https://github.com/rahiel/telegram-send/issues"
documentation = "https://rahiel.github.io/telegram-send/"

[project.scripts]
telegram-send = "telegram_send.telegram_send:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.version]
path = "telegram_send/version.py"

[tool.hatch.build.targets.wheel]
packages = ["telegram_send"]

[tool.flake8]
exclude = "build"
max-line-length = 120

[dependency-groups]
dev = [
    "mypy>=1.19.1",
    "pdoc>=16.0.0",
    "ruff>=0.14.11",
]