-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
64 lines (57 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "keepmenu"
dynamic = ["version"]
description = "Dmenu frontend for Keepass databases"
readme = "README.md"
license = "GPL-3.0"
authors = [
{ name = "Scott Hansen", email = "[email protected]" },
]
keywords = [
"dmenu",
"keepass",
"keepassxc",
"rofi",
"wofi",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"pykeepass>=4.0.0",
"pynput",
]
[project.scripts]
keepmenu = "keepmenu.__main__:main"
[project.urls]
Homepage = "https://github.com/firecat53/keepmenu"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0"
[tool.hatch.build.hooks.vcs]
version-file = "keepmenu/_version.py"
[tool.hatch.build.targets.wheel.shared-data]
LICENSE = "share/doc/keepmenu/LICENSE"
"README.md" = "share/doc/keepmenu/README.md"
"config.ini.example" = "share/doc/keepmenu/config.ini.example"
docs = "share/doc/keepmenu/docs"
"keepmenu.1" = "share/man/man1/keepmenu.1"
[tool.hatch.build.targets.sdist]
include = [
"/keepmenu",
]