-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
66 lines (58 loc) · 1.61 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
65
66
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "urlscan"
dynamic = ["version"]
description = "View/select the URLs in an email message or file"
readme = "README.md"
license = "GPL-2.0-or-later"
authors = [
{ name = "Scott Hansen", email = "[email protected]" },
]
keywords = [
"email",
"mutt",
"tmux",
"urlscan",
"urlview",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dependencies = [
"urwid>=1.2.1",
]
[project.scripts]
urlscan = "urlscan.__main__:main"
[project.urls]
Homepage = "https://github.com/firecat53/urlscan"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "urlscan/_version.py"
[tool.hatch.build.targets.wheel.shared-data]
LICENSE = "share/doc/urlscan/LICENSE"
"README.md" = "share/doc/urlscan/README.md"
"urlscan.1" = "share/man/man1/urlscan.1"
[tool.hatch.build.targets.sdist]
include = [
"/urlscan",
"urlscan.1",
]