-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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: | ||
|
||
|
@@ -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:: | ||
|
||
|
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,4 +1,4 @@ | ||
ignor | ||
ignord | ||
===== | ||
|
||
.. testsetup:: | ||
|
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 |
---|---|---|
|
@@ -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")], | ||
|
@@ -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", | ||
|
@@ -71,7 +71,7 @@ def read(*names, **kwargs): | |
}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"ignor = ignor.cli:main", | ||
"ignord = ignord.cli:main", | ||
] | ||
}, | ||
) |