-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dtbell"
version = "1.1.1"
authors = [
{ name="Escher Moore" },
]
description = "A highly configurable desktop notifier for RSS/Atom feeds."
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.7"
keywords = ["rss", "atom", "linux", "desktop", "notifications", "notify"]
classifiers = [
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: Desktop Environment :: Window Managers :: Applets",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Utilities",
]
dependencies = [
"aiohttp",
"feedparser",
"PyGObject",
"pydbus",
"python-dateutil",
"pytz",
]
[project.scripts]
dtbell = "dtbell.app:entry_point"
[project.urls]
"Homepage" = "https://github.com/EscherMoore/DitchTheBell"
"repository" = "https://github.com/EscherMoore/DitchTheBell"
"Bug Tracker" = "https://github.com/EscherMoore/DitchTheBell/issues"
"Documentation" = "https://github.com/EscherMoore/DitchTheBell/blob/main/README.md"