-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 890 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tootnotify"]
[project]
name = "tootnotify"
version = "1.0.0-RC1"
authors = [
{name="Jorge A. Duarte", email="[email protected]"},
]
description = "Command line tool to send DM notifications to a mastodon user."
readme = "README.md"
keywords = ["mastodon", "notification"]
requires-python = ">=3.7"
dependencies = [
"mastodon.py>=1.8.0"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.scripts]
tootnotify = "tootnotify.tootnotify:run_cli"
[project.urls]
"Homepage" = "https://github.com/babetoduarte/TootNotify"
"Bug Tracker" = "https://github.com/babetoduarte/TootNotify/issues"