|
| 1 | +[build-system] |
| 2 | +requires = ["pbr>=6.1.1"] |
| 3 | +build-backend = "pbr.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pwclient" |
| 7 | +description = "The command-line client for the Patchwork patch tracking tool" |
| 8 | +authors = [ |
| 9 | + { name = "Nate Case", email = "[email protected]"}, |
| 10 | + { name = "Stephen Finucane", email = "[email protected]"} |
| 11 | +] |
| 12 | +maintainers = [ |
| 13 | + { name = "Stephen Finucane", email = "[email protected]"} |
| 14 | +] |
| 15 | +readme = {file = "README.rst", content-type = "text/x-rst"} |
| 16 | +license = "GPL-2.0" |
| 17 | +dynamic = ["version", "dependencies"] |
| 18 | +requires-python = ">=3.9" |
| 19 | +keywords = ["patchwork", "api"] |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 5 - Production/Stable", |
| 22 | + "Environment :: Console", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Intended Audience :: Information Technology", |
| 25 | + "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Operating System :: OS Independent", |
| 29 | +] |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +"Bug Tracker" = "https://github.com/getpatchwork/pwclient/issues" |
| 33 | +"Source Code" = "https://github.com/getpatchwork/pwclient" |
| 34 | +"Documentation" = "https://pwclient.readthedocs.io" |
| 35 | + |
| 36 | +[project.scripts] |
| 37 | +pwclient = "pwclient.shell:main" |
| 38 | + |
| 39 | +[tool.setuptools] |
| 40 | +packages = [ |
| 41 | + "pwclient" |
| 42 | +] |
| 43 | + |
1 | 44 | [tool.ruff] |
2 | 45 | line-length = 79 |
3 | | -target-version = "py39" |
4 | 46 |
|
5 | 47 | [tool.ruff.format] |
6 | 48 | quote-style = "preserve" |
|
0 commit comments