-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
8 changed files
with
97 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pulp-glue-maven" | ||
version = "0.3.0.dev" | ||
description = "Version agnostic glue library to talk to pulpcore's REST API. (Maven plugin)" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "GPLv2+"} | ||
authors = [ | ||
{name = "Pulp Team", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: System :: Software Distribution", | ||
"Typing :: Typed", | ||
] | ||
dependencies = [ | ||
"pulp-glue>=0.24.0,<0.25.0.dev", | ||
] | ||
|
||
[project.urls] | ||
repository = "https://github.com/pulp/pulp-cli-maven" | ||
changelog = "https://github.com/pulp/pulp-cli-maven/blob/main/CHANGES.md" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["pulp_glue.*"] | ||
namespaces = true | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"] | ||
|
||
[tool.black] | ||
line-length = 100 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pulp-cli-maven" | ||
version = "0.3.0.dev" | ||
description = "Command line interface to talk to pulpcore's REST API. (Maven plugin commands)" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "GPLv2+"} | ||
authors = [ | ||
{name = "Pulp Team", email = "[email protected]"}, | ||
] | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: System :: Software Distribution", | ||
"Typing :: Typed", | ||
] | ||
dependencies = [ | ||
"pulp-cli>=0.24.0,<0.25.0.dev", | ||
"pulp-glue-maven==0.3.0.dev", | ||
] | ||
|
||
[project.urls] | ||
repository = "https://github.com/pulp/pulp-cli-maven" | ||
changelog = "https://github.com/pulp/pulp-cli-maven/blob/main/CHANGES.md" | ||
|
||
[project.entry-points."pulp_cli.plugins"] | ||
maven = "pulpcore.cli.maven" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["pulpcore.cli.*"] | ||
namespaces = true | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"] | ||
|
||
[tool.pulp_cli_template] | ||
app_label = "maven" | ||
glue = true | ||
|
@@ -23,13 +67,21 @@ test_matrix = """ | |
""" | ||
|
||
[tool.towncrier] | ||
package = "pulpcore.cli.maven" | ||
filename = "CHANGES.md" | ||
directory = "CHANGES/" | ||
title_format = "## {version} ({project_date})" | ||
template = "CHANGES/.TEMPLATE.md" | ||
issue_format = "[#{issue}](https://github.com/pulp/pulp-cli-maven/issues/{issue})" | ||
start_string = "[//]: # (towncrier release notes start)\n" | ||
underlines = ["", "", ""] | ||
|
||
[[tool.towncrier.section]] | ||
path = "" | ||
name = "" | ||
|
||
[[tool.towncrier.section]] | ||
path = "pulp-glue-maven" | ||
name = "Pulp-maven GLUE" | ||
|
||
[[tool.towncrier.type]] | ||
directory = "feature" | ||
|