Skip to content

Commit

Permalink
Update project URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Oct 16, 2023
1 parent fbe08e8 commit f4eb4a0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v0.3.0 (in development)
-----------------------
- Drop support for Python 3.6
- Support Python 3.11 and 3.12
- Moved to wheelodex organization

v0.2.0 (2021-10-14)
-------------------
Expand Down
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
:alt: Project Status: Active — The project has reached a stable, usable
state and is being actively developed.

.. image:: https://github.com/jwodder/entry-points-txt/workflows/Test/badge.svg?branch=master
:target: https://github.com/jwodder/entry-points-txt/actions?workflow=Test
.. image:: https://github.com/wheelodex/entry-points-txt/workflows/Test/badge.svg?branch=master
:target: https://github.com/wheelodex/entry-points-txt/actions?workflow=Test
:alt: CI Status

.. image:: https://codecov.io/gh/jwodder/entry-points-txt/branch/master/graph/badge.svg
:target: https://codecov.io/gh/jwodder/entry-points-txt
.. image:: https://codecov.io/gh/wheelodex/entry-points-txt/branch/master/graph/badge.svg
:target: https://codecov.io/gh/wheelodex/entry-points-txt

.. image:: https://img.shields.io/pypi/pyversions/entry-points-txt.svg
:target: https://pypi.org/project/entry-points-txt/

.. image:: https://img.shields.io/github/license/jwodder/entry-points-txt.svg
.. image:: https://img.shields.io/github/license/wheelodex/entry-points-txt.svg
:target: https://opensource.org/licenses/MIT
:alt: MIT License

`GitHub <https://github.com/jwodder/entry-points-txt>`_
`GitHub <https://github.com/wheelodex/entry-points-txt>`_
| `PyPI <https://pypi.org/project/entry-points-txt/>`_
| `Issues <https://github.com/jwodder/entry-points-txt/issues>`_
| `Changelog <https://github.com/jwodder/entry-points-txt/blob/master/CHANGELOG.md>`_
| `Issues <https://github.com/wheelodex/entry-points-txt/issues>`_
| `Changelog <https://github.com/wheelodex/entry-points-txt/blob/master/CHANGELOG.md>`_
``entry-points-txt`` provides functions for reading & writing
``entry_points.txt`` files according to `the spec`_. That is the one thing it
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ author = John Thorvald Wodder II
author_email = [email protected]
license = MIT
license_files = LICENSE
url = https://github.com/jwodder/entry-points-txt
url = https://github.com/wheelodex/entry-points-txt

keywords =
entry points
Expand All @@ -31,8 +31,8 @@ classifiers =
Typing :: Typed

project_urls =
Source Code = https://github.com/jwodder/entry-points-txt
Bug Tracker = https://github.com/jwodder/entry-points-txt/issues
Source Code = https://github.com/wheelodex/entry-points-txt
Bug Tracker = https://github.com/wheelodex/entry-points-txt/issues

[options]
packages = find:
Expand Down
4 changes: 2 additions & 2 deletions src/entry_points_txt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.. _the spec: https://packaging.python.org/specifications/entry-points/
Visit <https://github.com/jwodder/entry-points-txt> for more information.
Visit <https://github.com/wheelodex/entry-points-txt> for more information.
"""

from __future__ import annotations
Expand All @@ -23,7 +23,7 @@
__author__ = "John Thorvald Wodder II"
__author_email__ = "[email protected]"
__license__ = "MIT"
__url__ = "https://github.com/jwodder/entry-points-txt"
__url__ = "https://github.com/wheelodex/entry-points-txt"

__all__ = [
"EntryPoint",
Expand Down

0 comments on commit f4eb4a0

Please sign in to comment.