File: pyproject.toml

package info (click to toggle)
urlscan 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224 kB
  • sloc: python: 1,155; makefile: 8; sh: 5
file content (62 lines) | stat: -rw-r--r-- 1,538 bytes parent folder | download
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
[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 = "tech@firecat53.net" },
]
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",
    "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.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",
]