Skip to content

Commit e5197cc

Browse files
committed
fix: ignor references to ignord
1 parent c65c5f4 commit e5197cc

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

CONTRIBUTING.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ little bit helps, and credit will always be given.
88
Bug reports
99
===========
1010

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

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

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

2424
Feature requests and feedback
2525
=============================
2626

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

2929
If you are proposing a feature:
3030

@@ -35,13 +35,13 @@ If you are proposing a feature:
3535
Development
3636
===========
3737

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

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

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

4646
3. Create a branch for local development::
4747

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

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

55
This program is free software: you can redistribute it and/or modify

docs/reference/ignord.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ignor
1+
ignord
22
=====
33

44
.. testsetup::

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ def read(*names, **kwargs):
1515
name="ignord",
1616
version="0.1.1",
1717
license="LGPL-3.0-only",
18-
description="ignor is a Python CLI application that generates git ignore files for a specific language.",
18+
description="ignord is a Python CLI application that generates git ignore files for a specific language.",
1919
long_description="{}\n{}".format(
2020
re.compile("^.. start-badges.*^.. end-badges", re.M | re.S).sub("", read("README.rst")),
2121
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
2222
),
2323
author="Gonzalo Rafuls",
2424
author_email="[email protected]",
25-
url="https://github.com/grafuls/python-ignor",
25+
url="https://github.com/grafuls/ignord",
2626
packages=find_packages("src"),
2727
package_dir={"": "src"},
2828
py_modules=[path.stem for path in Path("src").glob("*.py")],
@@ -53,9 +53,9 @@ def read(*names, **kwargs):
5353
"Topic :: Utilities",
5454
],
5555
project_urls={
56-
"Documentation": "https://python-ignor.readthedocs.io/",
57-
"Changelog": "https://python-ignor.readthedocs.io/en/latest/changelog.html",
58-
"Issue Tracker": "https://github.com/grafuls/python-ignor/issues",
56+
"Documentation": "https://ignord.readthedocs.io/",
57+
"Changelog": "https://ignord.readthedocs.io/en/latest/changelog.html",
58+
"Issue Tracker": "https://github.com/grafuls/ignord/issues",
5959
},
6060
keywords=[
6161
# eg: "keyword1", "keyword2", "keyword3",
@@ -71,7 +71,7 @@ def read(*names, **kwargs):
7171
},
7272
entry_points={
7373
"console_scripts": [
74-
"ignor = ignor.cli:main",
74+
"ignord = ignord.cli:main",
7575
]
7676
},
7777
)

0 commit comments

Comments
 (0)