-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
82 lines (76 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "peplum"
version = "0.3.0"
description = "A terminal-based PEP lookup manager"
authors = [
]
dependencies = [
"httpx>=0.28.1",
"textual>=1.0.0",
"xdg-base-dirs>=6.0.2",
"typing-extensions>=4.12.2",
"packaging>=24.2",
"humanize>=4.11.0",
"textual-fspicker>=0.1.1",
]
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" }
keywords = [
"terminal",
"tui",
"chui",
"documentation",
"pep",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Documentation",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/davep/peplum"
Repository = "https://github.com/davep/peplum"
Documentation = "https://github.com/davep/peplum/blob/main/README.md"
Source = "https://github.com/davep/peplum"
Issues = "https://github.com/davep/peplum/issues"
Discussions = "https://github.com/davep/peplum/discussions"
[project.scripts]
peplum = "peplum.__main__:main"
[build-system]
# https://github.com/astral-sh/rye/issues/1446
requires = ["hatchling==1.26.3", "hatch-vcs"]
# requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.14.1",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"textual-dev>=1.7.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/peplum"]