-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Codespell got a new home with its own github organization. Reflect that in the repository.
- Loading branch information
1 parent
c12af88
commit 5167675
Showing
3 changed files
with
8 additions
and
8 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 |
---|---|---|
|
@@ -7,14 +7,14 @@ misspelled words in source code, but it can be used with other files as well. | |
Useful links | ||
------------ | ||
|
||
* `GitHub project <https://github.com/lucasdemarchi/codespell>`_ | ||
* `GitHub project <https://github.com/codespell-project/codespell>`_ | ||
|
||
* Mailing list: <[email protected]> with web archives/interface | ||
`here <https://groups.google.com/forum/?fromgroups#!forum/codespell>`_ | ||
|
||
* `Repository <https://github.com/lucasdemarchi/codespell>`_ | ||
* `Repository <https://github.com/codespell-project/codespell>`_ | ||
|
||
* `Releases <https://github.com/lucasdemarchi/codespell/releases>`_ | ||
* `Releases <https://github.com/codespell-project/codespell/releases>`_ | ||
|
||
Requirements | ||
------------ | ||
|
@@ -130,13 +130,13 @@ Updating | |
|
||
To stay current with codespell developments it is possible to build codespell from GitHub via:: | ||
|
||
pip install --upgrade git+https://github.com/lucasdemarchi/codespell.github | ||
pip install --upgrade git+https://github.com/codespell-project/codespell.github | ||
|
||
**Important Notes:** | ||
|
||
* Sometimes installing via ``pip`` will complain about permissions. If this is the case then run with :: | ||
|
||
pip install --user --upgrade git+https://github.com/lucasdemarchi/codespell.git | ||
pip install --user --upgrade git+https://github.com/codespell-project/codespell.git | ||
|
||
* It has been reported that after installing from ``pip``, codespell can't be located. Please check the $PATH variable to see if ``~/.local/bin`` is present. If it isn't then add it to your path. | ||
* If you decide to install via ``pip`` then be sure to remove any previously installed versions of codespell (via you OSs preferred app mananger). | ||
|
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ but it can be used with other files as well. | |
Lucas De Marchi <[email protected]> | ||
|
||
[SEE ALSO] | ||
https://github.com/lucasdemarchi/codespell | ||
https://github.com/codespell-project/codespell |
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 |
---|---|---|
|
@@ -13,9 +13,9 @@ | |
DESCRIPTION = """Codespell""" | ||
MAINTAINER = 'Lucas De Marchi' | ||
MAINTAINER_EMAIL = '[email protected]' | ||
URL = 'https://github.com/lucasdemarchi/codespell/' | ||
URL = 'https://github.com/codespell-project/codespell/' | ||
LICENSE = 'GPL v2' | ||
DOWNLOAD_URL = 'https://github.com/lucasdemarchi/codespell/' | ||
DOWNLOAD_URL = 'https://github.com/codespell-project/codespell/' | ||
with open('README.rst', 'r') as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
||
|