-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.31 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
[project]
name = "nothing-less"
version = "1.15.0"
description = "A TUI paging application with enhanced support for tabular data and real-time streaming"
authors = [
{name = "Matt Pryor",email = "mapryor1991@yahoo.com"}
]
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"textual (>=8.0.2,<9.0.0)",
"pyperclip (>=1.11.0,<2.0.0)",
"packaging (>=26.0,<27.0)",
]
license = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/mpryor/nothing-less"
Issues = "https://github.com/mpryor/nothing-less/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nless = "nless.cli:main"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.7.0"
pre-commit = "^4.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.25.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.6"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = ["perf: performance regression tests (may be slow)"]
[tool.poetry]
packages = [
{include="nless"},
{include="CHANGELOG.md"},
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.15.0"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
version_files = ["pyproject.toml:^version"]