..
Copyright 2017-2019 The FIAAS Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
publish - Tool to create a release of a Python package
======================================================
|Codacy Quality Badge| |Codacy Coverage Badge|
.. |Codacy Quality Badge| image:: https://api.codacy.com/project/badge/Grade/bd7d31c7ceac43eb81884b2adc4ba3ed
:target: https://www.codacy.com/app/fiaas/publish?utm_source=github.com&utm_medium=referral&utm_content=fiaas/publish&utm_campaign=Badge_Grade
.. |Codacy Coverage Badge| image:: https://api.codacy.com/project/badge/Coverage/bd7d31c7ceac43eb81884b2adc4ba3ed
:target: https://www.codacy.com/app/fiaas/publish?utm_source=github.com&utm_medium=referral&utm_content=fiaas/publish&utm_campaign=Badge_Coverage
publish is a tool to package and release a python project. It will create a changelog and upload artifacts to Github and PyPI.
It is created for and by the `FIAAS project`_, and used for most of our projects.
.. _`FIAAS project`: https://github.com/fiaas
Usage
-----
In order to use publish, you must first install it::
pip install publish
Under the covers, publish uses github-release_ and twine_ to do most of the work, and those tools require credentials for Github and PyPI to be available in environment variables::
export GITHUB_TOKEN=gh-token
export TWINE_USERNAME=pypi-user
export TWINE_PASSWORD=pypi-pass
In order to know where to upload the artifacts, you must specify an organization, and a repository::
publish fiaas k8s
Before uploading anything, publish will verify that the current checkout is suitable to be released, and checks the following items:
* Are all files either ignored or in version control?
* Is every change committed?
* Is the currently checked out code tagged with an annotated tag?
* Does that tag use the convention ``v<major>.<minor>.<bugfix>``?
If the answer to all of these is yes, the name of the tag is used as the version to release. A changelog is generated from the git log, source tarballs and wheels are built, the release is created in Github and PyPI, and the files are uploaded.
When uploading a release to Github, the changelog is attached to the release automatically.
In order for the changelog to be attached to the release on PyPI, it needs to be included in the long description generated by ``setup.py``. To help with this, the changelog is written to a file, and the name of the file is available in an environment variable called ``CHANGELOG_FILE``. Append the contents of this file to your long description, and it will be included in the description on PyPI.
.. _github-release: https://github.com/j0057/github-release
.. _twine: https://github.com/pypa/twine
Releasing
---------
To make a new release of this project, there are a couple steps to follow. Ideally, we want to release from master, as often as possible. Version numbers should adhere to SemVer_. When you have a passing build that you want to make a release from, do the following steps:
- Create an annotated tag for the commit in question, naming it ``v<major>.<minor>.<bugfix>``. For instance::
$ git tag -a v0.0.2 a1b2c3d4
- Push the new tag to github::
$ git push origin v0.0.2
- A new release with the version you selected as a tag should now be built and uploaded to PyPI_ and Github_
.. _SemVer: http://semver.org/
.. _PyPI: https://pypi.org/project/publish/
.. _Github: https://github.com/fiaas/publish/releases
Changes since last version
--------------------------
* `8272c77`_: Upgrade twine to 5.1.1
* `1c90074`_: Use ubuntu2004 CI image
* `a866d45`_: Document how to make a release
.. _8272c77: https://github.com/fiaas/publish/commit/8272c77
.. _1c90074: https://github.com/fiaas/publish/commit/1c90074
.. _a866d45: https://github.com/fiaas/publish/commit/a866d45
Raw data
{
"_id": null,
"home_page": "https://github.com/fiaas/publish",
"name": "publish",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "pypi github fiaas",
"author": "FiaaS developers",
"author_email": "fiaas@googlegroups.com",
"download_url": "https://files.pythonhosted.org/packages/fc/9b/042300b82381afe742ac4b220e5b6a0157118e928ee96216e815a2612b3a/publish-0.3.6.tar.gz",
"platform": null,
"description": "..\n Copyright 2017-2019 The FIAAS Authors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\npublish - Tool to create a release of a Python package\n======================================================\n\n|Codacy Quality Badge| |Codacy Coverage Badge|\n\n\n.. |Codacy Quality Badge| image:: https://api.codacy.com/project/badge/Grade/bd7d31c7ceac43eb81884b2adc4ba3ed\n :target: https://www.codacy.com/app/fiaas/publish?utm_source=github.com&utm_medium=referral&utm_content=fiaas/publish&utm_campaign=Badge_Grade\n.. |Codacy Coverage Badge| image:: https://api.codacy.com/project/badge/Coverage/bd7d31c7ceac43eb81884b2adc4ba3ed\n :target: https://www.codacy.com/app/fiaas/publish?utm_source=github.com&utm_medium=referral&utm_content=fiaas/publish&utm_campaign=Badge_Coverage\n\npublish is a tool to package and release a python project. It will create a changelog and upload artifacts to Github and PyPI.\n\nIt is created for and by the `FIAAS project`_, and used for most of our projects.\n\n.. _`FIAAS project`: https://github.com/fiaas\n\n\nUsage\n-----\n\nIn order to use publish, you must first install it::\n\n pip install publish\n\n\nUnder the covers, publish uses github-release_ and twine_ to do most of the work, and those tools require credentials for Github and PyPI to be available in environment variables::\n\n export GITHUB_TOKEN=gh-token\n export TWINE_USERNAME=pypi-user\n export TWINE_PASSWORD=pypi-pass\n\nIn order to know where to upload the artifacts, you must specify an organization, and a repository::\n\n publish fiaas k8s\n\n\nBefore uploading anything, publish will verify that the current checkout is suitable to be released, and checks the following items:\n\n* Are all files either ignored or in version control?\n* Is every change committed?\n* Is the currently checked out code tagged with an annotated tag?\n* Does that tag use the convention ``v<major>.<minor>.<bugfix>``?\n\nIf the answer to all of these is yes, the name of the tag is used as the version to release. A changelog is generated from the git log, source tarballs and wheels are built, the release is created in Github and PyPI, and the files are uploaded.\n\nWhen uploading a release to Github, the changelog is attached to the release automatically.\n\nIn order for the changelog to be attached to the release on PyPI, it needs to be included in the long description generated by ``setup.py``. To help with this, the changelog is written to a file, and the name of the file is available in an environment variable called ``CHANGELOG_FILE``. Append the contents of this file to your long description, and it will be included in the description on PyPI.\n\n.. _github-release: https://github.com/j0057/github-release\n.. _twine: https://github.com/pypa/twine\n\n\nReleasing\n---------\n\nTo make a new release of this project, there are a couple steps to follow. Ideally, we want to release from master, as often as possible. Version numbers should adhere to SemVer_. When you have a passing build that you want to make a release from, do the following steps:\n\n- Create an annotated tag for the commit in question, naming it ``v<major>.<minor>.<bugfix>``. For instance::\n\n $ git tag -a v0.0.2 a1b2c3d4\n\n- Push the new tag to github::\n\n $ git push origin v0.0.2\n\n- A new release with the version you selected as a tag should now be built and uploaded to PyPI_ and Github_\n\n.. _SemVer: http://semver.org/\n.. _PyPI: https://pypi.org/project/publish/\n.. _Github: https://github.com/fiaas/publish/releases\n\n\nChanges since last version\n--------------------------\n\n* `8272c77`_: Upgrade twine to 5.1.1\n* `1c90074`_: Use ubuntu2004 CI image\n* `a866d45`_: Document how to make a release\n\n.. _8272c77: https://github.com/fiaas/publish/commit/8272c77\n.. _1c90074: https://github.com/fiaas/publish/commit/1c90074\n.. _a866d45: https://github.com/fiaas/publish/commit/a866d45\n",
"bugtrack_url": null,
"license": "Apache License",
"summary": "Publish python package to PyPI and Github",
"version": "0.3.6",
"project_urls": {
"Homepage": "https://github.com/fiaas/publish"
},
"split_keywords": [
"pypi",
"github",
"fiaas"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "599a74e6c741a4cbd811ca467d3f260fe2a759587a593e51d4da588e9c8e4f1c",
"md5": "0dd96951ddc8f92a7c0acf393c3753d9",
"sha256": "b8a6f95cd4b451f478613d05ebaa914a2909338ddafd135bca9ba359789a9fd6"
},
"downloads": -1,
"filename": "publish-0.3.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0dd96951ddc8f92a7c0acf393c3753d9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 11092,
"upload_time": "2024-10-03T12:52:32",
"upload_time_iso_8601": "2024-10-03T12:52:32.568463Z",
"url": "https://files.pythonhosted.org/packages/59/9a/74e6c741a4cbd811ca467d3f260fe2a759587a593e51d4da588e9c8e4f1c/publish-0.3.6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc9b042300b82381afe742ac4b220e5b6a0157118e928ee96216e815a2612b3a",
"md5": "a8906a1d6b42e31b26af2ebbf1b26149",
"sha256": "a1194e97338f0037a6e1cc5d2dbaf6d355ad8fee2d11dd089a230475df6e6964"
},
"downloads": -1,
"filename": "publish-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "a8906a1d6b42e31b26af2ebbf1b26149",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14974,
"upload_time": "2024-10-03T12:52:34",
"upload_time_iso_8601": "2024-10-03T12:52:34.057403Z",
"url": "https://files.pythonhosted.org/packages/fc/9b/042300b82381afe742ac4b220e5b6a0157118e928ee96216e815a2612b3a/publish-0.3.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-03 12:52:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "fiaas",
"github_project": "publish",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "publish"
}