-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #768 from mdellweg/pyproject
Switch away from setup.py
- Loading branch information
Showing
12 changed files
with
85 additions
and
140 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-399-g78ad960 | ||
2021.08.26-403-g76d04d7 |
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
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://docs.pulpproject.org/contributing/ | ||
|
||
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.
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
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,51 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 40.8.0", | ||
"wheel >= 0.29.0", | ||
] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "pulp_python" | ||
version = "3.13.0.dev" | ||
description = "pulp-python plugin for the Pulp Project" | ||
readme = "README.md" | ||
authors = [ | ||
{name="Pulp Team", 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", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"pulpcore>=3.49.0,<3.70", | ||
"pkginfo>=1.10.0,<1.12.0", # Twine has <1.11 in their requirements | ||
"bandersnatch>=6.3,<7.0", # Anything >6.3 requires Python 3.10+ | ||
"pypi-simple>=1.5.0,<2.0", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://pulpproject.org" | ||
Documentation = "https://pulpproject.org/pulp_python/" | ||
Repository = "https://github.com/pulp/pulp_python" | ||
"Bug Tracker" = "https://github.com/pulp/pulp_python/issues" | ||
Changelog = "https://pulpproject.org/pulp_python/changes/" | ||
|
||
[project.entry-points."pulpcore.plugin"] | ||
pulp_python = "pulp_python:default_app_config" | ||
|
||
[project.entry-points."pytest11"] | ||
pulp_python = "pulp_python.pytest_plugin" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
|
||
[tool.towncrier] | ||
package = "pulp_python" | ||
filename = "CHANGES.md" | ||
|
@@ -10,21 +58,15 @@ underlines = ["", "", ""] | |
|
||
[tool.check-manifest] | ||
ignore = [ | ||
".bumpversion.cfg", | ||
".pep8speaks.yml", | ||
"CHANGES/**", | ||
"CONTRIBUTING.rst", | ||
"HISTORY.rst", | ||
"dev_requirements.txt", | ||
"doc_requirements.txt", | ||
"docs/**", | ||
"staging_docs/**", | ||
"template_config.yml", | ||
".travis/**", | ||
".travis.yml", | ||
".pep8speaks.yml", | ||
"shelf_reader-0.1-py2-none-any.whl", | ||
".github/**", | ||
".ci/**", | ||
".github/**", | ||
"lint_requirements.txt", | ||
".flake8", | ||
] | ||
|
@@ -58,4 +100,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.