-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 757 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 757 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hackertray"
version = "5.0.0"
description = "Hacker News app that sits in your System Tray"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Nemo", email = "hackertray@captnemo.in" }
]
keywords = ["hacker news", "hn", "tray", "system tray", "icon", "hackertray"]
requires-python = ">=3.11"
dependencies = []
[project.urls]
Homepage = "https://captnemo.in/hackertray"
[project.scripts]
hackertray = "hackertray:main"
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["test*"]
[tool.setuptools.package-data]
"hackertray.data" = ["hacker-tray.png", "hacker-tray-light.png"]