-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.8 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
68
69
70
71
72
[project]
name = "textgres"
version = "0.1.0"
description = "A TUI for Postgres."
authors = [
{ name = "Devin Doolin", email = "devin@doolin.io" }
]
dependencies = [
"click==8.1.7",
"xdg-base-dirs==6.0.1",
"click-default-group==1.2.4",
"httpx[brotli]==0.27.0",
"pyperclip==1.8.2",
"pydantic==2.7.3",
"pyyaml==6.0.1",
"pydantic-settings==2.3.4",
"python-dotenv==1.0.1",
"psycopg2==2.9.9",
"textual-autocomplete>=3.0.0a9",
"textual[syntax]==0.73.0",
]
readme = "README.md"
requires-python = ">= 3.12"
license = { file = "LICENSE" }
keywords = ["tui", "postgres", "client", "terminal", "textual", "cli", "textgres", "developer-tool"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Homepage = "https://github.com/icdevin/textgres"
Repository = "https://github.com/icdevin/textgres"
Issues = "https://github.com/icdevin/textgres/issues"
Documentation = "https://github.com/icdevin/textgres/blob/main/README.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
textgres = "textgres.__main__:cli"
[tool.rye]
managed = true
dev-dependencies = [
"textual-dev>=1.5.1",
"pytest>=8.3.1",
"jinja2>=3.1.4",
"syrupy>=4.6.1",
"pytest-xdist>=3.6.1",
"pytest-cov>=5.0.0",
"pytest-textual-snapshot>=1.0.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/textgres"]
[tool.pytest.ini_options]
markers = [
"serial", # used to indicate tests must not run in parallel
]
[tool.coverage.run]
relative_files = true