|
1 |
| -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "libtmux"
|
3 | 3 | version = "0.37.0"
|
4 | 4 | description = "Typed library that provides an ORM wrapper for tmux, a terminal multiplexer."
|
5 |
| -license = "MIT" |
6 |
| -authors = [ "Tony Narlock <[email protected]>"] |
| 5 | +requires-python = ">=3.9,<4.0" |
| 6 | +authors = [ |
| 7 | + { name = "Tony Narlock", email = "[email protected]"} |
| 8 | +] |
| 9 | +license = { text = "MIT" } |
7 | 10 | classifiers = [
|
8 | 11 | "Development Status :: 5 - Production/Stable",
|
9 | 12 | "License :: OSI Approved :: MIT License",
|
@@ -41,49 +44,74 @@ include = [
|
41 | 44 | { path = "conftest.py", format = "sdist" },
|
42 | 45 | ]
|
43 | 46 |
|
44 |
| -[tool.poetry.urls] |
| 47 | +[project.urls] |
45 | 48 | "Bug Tracker" = "https://github.com/tmux-python/libtmux/issues"
|
46 | 49 | Documentation = "https://libtmux.git-pull.com"
|
47 | 50 | Repository = "https://github.com/tmux-python/libtmux"
|
48 | 51 | Changes = "https://github.com/tmux-python/libtmux/blob/master/CHANGES"
|
49 | 52 |
|
50 |
| -[tool.poetry.dependencies] |
51 |
| -python = "^3.8" |
52 |
| - |
53 |
| -[tool.poetry.group.docs.dependencies] |
54 |
| -### Docs ### |
55 |
| -sphinx = "*" |
56 |
| -furo = "*" |
57 |
| -gp-libs = "*" |
58 |
| -sphinx-autobuild = "*" |
59 |
| -sphinx-autodoc-typehints = "*" |
60 |
| -sphinx-inline-tabs = "*" |
61 |
| -sphinxext-opengraph = "<0.8" # https://github.com/wpilibsuite/sphinxext-opengraph/issues/100 |
62 |
| -sphinx-copybutton = "*" |
63 |
| -sphinxext-rediraffe = "*" |
64 |
| -myst_parser = ">=0.18.1" |
65 |
| -docutils = "*" |
66 |
| -linkify-it-py = "*" |
67 |
| - |
68 |
| -[tool.poetry.group.test.dependencies] |
69 |
| -### Testing ### |
70 |
| -pytest = "*" |
71 |
| -pytest-rerunfailures = "*" |
72 |
| -pytest-mock = "*" |
73 |
| -pytest-watcher = "*" |
74 |
| -pytest-xdist = "*" |
75 |
| -gp-libs = "~0.0.4" |
76 |
| - |
77 |
| -[tool.poetry.group.coverage.dependencies] |
78 |
| -### Coverage ### |
79 |
| -codecov = "*" |
80 |
| -coverage = "*" |
81 |
| -pytest-cov = "*" |
82 |
| - |
83 |
| -[tool.poetry.group.lint.dependencies] |
84 |
| -### Lint ### |
85 |
| -ruff = "*" |
86 |
| -mypy = "*" |
| 53 | +[tool.uv] |
| 54 | +dev-dependencies = [ |
| 55 | + # Docs |
| 56 | + "sphinx", |
| 57 | + "furo", |
| 58 | + "gp-libs", |
| 59 | + "sphinx-autobuild", |
| 60 | + "sphinx-autodoc-typehints", |
| 61 | + "sphinx-inline-tabs", |
| 62 | + "sphinxext-opengraph<0.8", |
| 63 | + "sphinx-copybutton", |
| 64 | + "sphinxext-rediraffe", |
| 65 | + "myst-parser>=0.18.1", |
| 66 | + "linkify-it-py", |
| 67 | + # Testing |
| 68 | + "gp-libs", |
| 69 | + "pytest", |
| 70 | + "pytest-rerunfailures", |
| 71 | + "pytest-mock", |
| 72 | + "pytest-watcher", |
| 73 | + "pytest-xdist", |
| 74 | + # Coverage |
| 75 | + "codecov", |
| 76 | + "coverage", |
| 77 | + "pytest-cov", |
| 78 | + # Lint |
| 79 | + "ruff", |
| 80 | + "mypy", |
| 81 | +] |
| 82 | + |
| 83 | +[dependency-groups] |
| 84 | +docs = [ |
| 85 | + "sphinx", |
| 86 | + "furo", |
| 87 | + "gp-libs", |
| 88 | + "sphinx-autobuild", |
| 89 | + "sphinx-autodoc-typehints", |
| 90 | + "sphinx-inline-tabs", |
| 91 | + "sphinxext-opengraph", |
| 92 | + "sphinx-copybutton", |
| 93 | + "sphinxext-rediraffe", |
| 94 | + "myst-parser", |
| 95 | + "linkify-it-py", |
| 96 | +] |
| 97 | +testing = [ |
| 98 | + "gp-libs", |
| 99 | + "pytest", |
| 100 | + "pytest-rerunfailures", |
| 101 | + "pytest-mock", |
| 102 | + "pytest-watcher", |
| 103 | +] |
| 104 | +coverage =[ |
| 105 | + "codecov", |
| 106 | + "coverage", |
| 107 | + "pytest-cov", |
| 108 | +] |
| 109 | +lint = [ |
| 110 | + "ruff", |
| 111 | + "mypy", |
| 112 | +] |
| 113 | + |
| 114 | + |
87 | 115 |
|
88 | 116 | [tool.poetry.plugins.pytest11]
|
89 | 117 | libtmux = "libtmux.pytest_plugin"
|
|
0 commit comments