-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
90 lines (84 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "jiratui"
version = "1.8.1"
description = "A TUI for interacting with Atlassian Jira from your terminal."
readme = "README.md"
requires-python = ">=3.12,<3.15"
authors = [
{name = "Gaston T.", email = "[email protected]"}
]
maintainers = [
{name = "Gaston T.", email = "[email protected]"}
]
keywords = ["tui", "jira", "cli", "terminal", "shell", "task-management"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Framework :: Pydantic :: 2",
"Framework :: Pytest",
"Framework :: Sphinx",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Terminals",
"Topic :: Utilities",
]
dependencies = [
"click>=8.4.0,<9.0.0",
"gitpython>=3.1.47,<3.2.0",
"httpx>=0.28.1",
"marklas>=0.7.0",
"puremagic>=2.2.0,<3.0.0",
"pydantic-settings[yaml]>=2.14.0,<3.0.0",
"python-dateutil>=2.9.0.post0",
"python-json-logger>=4.1.0,<5.0.0",
"textual-autocomplete>=4.0.6",
"textual-image>=0.12.0,<0.13.0",
"textual[syntax]>=8.2.7,<9.0.0",
"urllib3>=2.6.3,<2.8.0",
"xdg-base-dirs>=6.0.2",
]
[project.urls]
Homepage = "https://jiratui.sh"
Documentation = "https://jiratui.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/whyisdifficult/jiratui"
Issues = "https://github.com/whyisdifficult/jiratui/issues"
Changelog = "https://github.com/whyisdifficult/jiratui/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"pre-commit>=4.6.0,<4.7.0",
"textual-dev>=1.8.0",
]
docs = [
"myst-parser>=5.1.0,<6.0.0",
"sphinx>=9.1.0,<10.0.0",
"sphinx-design>=0.6.1",
"sphinx-markdown-builder>=0.6.10,<0.7.0",
"sphinx-rtd-theme>=3.0.2",
"sphinxcontrib-mermaid>=2.0.2,<2.1.0",
]
lint = [
"mypy>=2.1.0,<3.0.0",
"ruff>=0.15.14,<0.16.0",
]
test = [
"pytest>9.0.2,<10.0.0",
"pytest-asyncio>=1.3.0,<2.0.0",
"pytest-cov>=7.1.0,<8.0.0",
"respx>=0.23.1",
]
[project.scripts]
jiratui = "jiratui.cli:jiratuicli"
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[tool.mypy]
python_version = 3.14
strict_optional = false
ignore_missing_imports = true
show_error_context = false
exclude = ["docs", "test"]