-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pyproject #1203
Merged
Merged
Pyproject #1203
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Contributing | ||
|
||
We have provided detailed documentation for ways in which you can | ||
contribute to Pulp here: | ||
https://pulpproject.org/dev/ | ||
|
||
This documentation includes: | ||
|
||
* Suggestions of how to contribute | ||
* How we track bugs | ||
* Ways to get in touch with other contributors who can advise you | ||
* A contribution checklist | ||
* A developer guide | ||
|
||
Join us! We look forward to hearing from you. |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -5,6 +5,49 @@ requires = [ | |
] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "pulp-deb" | ||
version = "3.5.0.dev" | ||
description = "pulp-deb plugin for the Pulp Project" | ||
readme = "README.md" | ||
authors = [ | ||
{name="Matthias Dellweg", email="[email protected]"}, | ||
] | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Operating System :: POSIX :: Linux", | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Django", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
# All things django and asyncio are deliberately left to pulpcore | ||
# Example transitive requirements: asgiref, asyncio, aiohttp | ||
"pulpcore>=3.49.0,<3.70", | ||
"python-debian>=0.1.44,<0.2.0", | ||
"python-gnupg>=0.5,<0.6", | ||
"jsonschema>=4.6,<5.0", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://pulpproject.org" | ||
Documentation = "https://pulpproject.org/pulp_deb/" | ||
Repository = "https://github.com/pulp/pulp_deb" | ||
"Bug Tracker" = "https://github.com/pulp/pulp_deb/issues" | ||
Changelog = "https://pulpproject.org/pulp_deb/changes/" | ||
|
||
[project.entry-points."pulpcore.plugin"] | ||
pulp_deb = "pulp_deb:default_app_config" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
|
||
[tool.towncrier] | ||
package = "pulp_deb" | ||
filename = "CHANGES.md" | ||
|
@@ -47,13 +90,10 @@ underlines = ["", "", ""] | |
|
||
[tool.check-manifest] | ||
ignore = [ | ||
".bumpversion.cfg", | ||
"CHANGES/**", | ||
"CONTRIBUTING.rst", | ||
"dev_requirements.txt", | ||
"doc_requirements.txt", | ||
"docs/**", | ||
"staging_docs/**", | ||
"template_config.yml", | ||
".pep8speaks.yml", | ||
".ci/**", | ||
|
@@ -107,4 +147,8 @@ search = "version = \"{current_version}\"" | |
replace = "version = \"{new_version}\"" | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "./setup.py" | ||
# This section is managed by the plugin template. Do not edit manually. | ||
|
||
filename = "./pyproject.toml" | ||
search = "version = \"{current_version}\"" | ||
replace = "version = \"{new_version}\"" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mdellweg Since this email presumably no longer exists, do you want to update this section? Should we add more "authors", or is there a separate field for current "maintainers"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right. I wanted to ask you for suggestions.
Obviously, authors is a list, so we can add more.
But i think you can also add "maintainers".
https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#authors-maintainers
How about we merge this as the very transition it is, and you can adjust the fields afterwards?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sounds good to me. It appears that it didn't bother anyone so far that the email is not used, though I can't of course not be sure, maybe once we add more we suddenly get an influx of request 🙃