-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (52 loc) · 1.57 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
[project]
name = "pispy-client"
version = "0.9.0"
description = "A terminal-based Python package index inspector"
authors = [
{ name = "Dave Pearson", email = "davep@davep.org" }
]
dependencies = [
"httpx",
"packaging",
"textual>=0.68.0",
]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Terminals",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/davep/pispy"
Repository = "https://github.com/davep/pispy"
Documentation = "https://github.com/davep/pispy/blob/main/README.md"
Source = "https://github.com/davep/pispy"
Issues = "https://github.com/davep/pispy/issues"
Discussions = "https://github.com/davep/pispy/discussions"
[project.scripts]
pispy = "pispy.__main__:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pre-commit>=4.0.1",
"mypy>=1.13.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pispy"]