Skip to content

Commit

Permalink
fix: ignor references to ignord
Browse files Browse the repository at this point in the history
  • Loading branch information
grafuls committed May 24, 2023
1 parent c65c5f4 commit e5197cc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ little bit helps, and credit will always be given.
Bug reports
===========

When `reporting a bug <https://github.com/grafuls/python-ignor/issues>`_ please include:
When `reporting a bug <https://github.com/grafuls/ignord/issues>`_ please include:

* Your operating system name and version.
* Any details about your local setup that might be helpful in troubleshooting.
Expand All @@ -17,14 +17,14 @@ When `reporting a bug <https://github.com/grafuls/python-ignor/issues>`_ please
Documentation improvements
==========================

ignor could always use more documentation, whether as part of the
official ignor docs, in docstrings, or even on the web in blog posts,
ignord could always use more documentation, whether as part of the
official ignord docs, in docstrings, or even on the web in blog posts,
articles, and such.

Feature requests and feedback
=============================

The best way to send feedback is to file an issue at https://github.com/grafuls/python-ignor/issues.
The best way to send feedback is to file an issue at https://github.com/grafuls/ignord/issues.

If you are proposing a feature:

Expand All @@ -35,13 +35,13 @@ If you are proposing a feature:
Development
===========

To set up `python-ignor` for local development:
To set up `ignord` for local development:

1. Fork `python-ignor <https://github.com/grafuls/python-ignor>`_
1. Fork `ignord <https://github.com/grafuls/ignord>`_
(look for the "Fork" button).
2. Clone your fork locally::

git clone [email protected]:YOURGITHUBNAME/python-ignor.git
git clone [email protected]:YOURGITHUBNAME/ignord.git

3. Create a branch for local development::

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

ignor - ignor is a Python CLI application that generates git ignore files for a specific language.
ignord - ignord is a Python CLI application that generates git ignore files for a specific language.
Copyright (c) 2023, Gonzalo Rafuls.

This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/ignord.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ignor
ignord
=====

.. testsetup::
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ def read(*names, **kwargs):
name="ignord",
version="0.1.1",
license="LGPL-3.0-only",
description="ignor is a Python CLI application that generates git ignore files for a specific language.",
description="ignord is a Python CLI application that generates git ignore files for a specific language.",
long_description="{}\n{}".format(
re.compile("^.. start-badges.*^.. end-badges", re.M | re.S).sub("", read("README.rst")),
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
),
author="Gonzalo Rafuls",
author_email="[email protected]",
url="https://github.com/grafuls/python-ignor",
url="https://github.com/grafuls/ignord",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=[path.stem for path in Path("src").glob("*.py")],
Expand Down Expand Up @@ -53,9 +53,9 @@ def read(*names, **kwargs):
"Topic :: Utilities",
],
project_urls={
"Documentation": "https://python-ignor.readthedocs.io/",
"Changelog": "https://python-ignor.readthedocs.io/en/latest/changelog.html",
"Issue Tracker": "https://github.com/grafuls/python-ignor/issues",
"Documentation": "https://ignord.readthedocs.io/",
"Changelog": "https://ignord.readthedocs.io/en/latest/changelog.html",
"Issue Tracker": "https://github.com/grafuls/ignord/issues",
},
keywords=[
# eg: "keyword1", "keyword2", "keyword3",
Expand All @@ -71,7 +71,7 @@ def read(*names, **kwargs):
},
entry_points={
"console_scripts": [
"ignor = ignor.cli:main",
"ignord = ignord.cli:main",
]
},
)

0 comments on commit e5197cc

Please sign in to comment.