-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.69 KB
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
[project]
name = "pad"
version = "0.7.0"
description = "Pad is an easy to use terminal code editor for those of us who aren't into vim."
readme = "README.md"
authors = [
{ name = "Daniel Roy Greenfeld", email = "daniel@feldroy.com" }
]
requires-python = ">=3.14"
dependencies = [
"textual[syntax]>=3.0.0",
"typer>=0.21.0",
"vexy-glob>=1.0.9",
]
keywords = [
"backend",
"python",
"terminal",
"textual",
"tui",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Text Editors",
"Topic :: Text Processing",
"Topic :: Utilities",
"Typing :: Typed",
]
urls.Homepage = "https://github.com/feldroy/pad"
urls.Issues = "https://github.com/feldroy/pad/issues"
urls.Repository = "https://github.com/feldroy/pad"
urls.Sponsor = "https://github.com/sponsors/feldroy"
[project.scripts]
pad = "pad:app"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"pytest>=8.0.0",
"ruff>=0.14.10",
"rust-just>=1.46.0",
]
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "pad"