Commit f3646f401c4c77df8e239cbd061342711d163975
Committed by
GitHub
Merge pull request #336 from jdufresne/pypi
Update all pypi.python.org URLs to pypi.org
Showing
6 changed files
with
6 additions
and
6 deletions
README.md
| 1 | 1 | python-oletools |
| 2 | 2 | =============== |
| 3 | -[](https://pypi.python.org/pypi/oletools) | |
| 3 | +[](https://pypi.org/project/oletools/) | |
| 4 | 4 | [](https://travis-ci.org/decalage2/oletools) |
| 5 | 5 | |
| 6 | 6 | [oletools](http://www.decalage.info/python/oletools) is a package of python tools to analyze | ... | ... |
oletools/README.html
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | </head> |
| 18 | 18 | <body> |
| 19 | 19 | <h1 id="python-oletools">python-oletools</h1> |
| 20 | -<p><a href="https://pypi.python.org/pypi/oletools"><img src="https://img.shields.io/pypi/v/oletools.svg" alt="PyPI" /></a> <a href="https://travis-ci.org/decalage2/oletools"><img src="https://travis-ci.org/decalage2/oletools.svg?branch=master" alt="Build Status" /></a></p> | |
| 20 | +<p><a href="https://pypi.org/project/oletools/"><img src="https://img.shields.io/pypi/v/oletools.svg" alt="PyPI" /></a> <a href="https://travis-ci.org/decalage2/oletools"><img src="https://travis-ci.org/decalage2/oletools.svg?branch=master" alt="Build Status" /></a></p> | |
| 21 | 21 | <p><a href="http://www.decalage.info/python/oletools">oletools</a> is a package of python tools to analyze <a href="http://en.wikipedia.org/wiki/Compound_File_Binary_Format">Microsoft OLE2 files</a> (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office documents or Outlook messages, mainly for malware analysis, forensics and debugging. It is based on the <a href="http://www.decalage.info/olefile">olefile</a> parser. See <a href="http://www.decalage.info/python/oletools" class="uri">http://www.decalage.info/python/oletools</a> for more info.</p> |
| 22 | 22 | <p><strong>Quick links:</strong> <a href="http://www.decalage.info/python/oletools">Home page</a> - <a href="https://github.com/decalage2/oletools/wiki/Install">Download/Install</a> - <a href="https://github.com/decalage2/oletools/wiki">Documentation</a> - <a href="https://github.com/decalage2/oletools/issues">Report Issues/Suggestions/Questions</a> - <a href="http://decalage.info/contact">Contact the Author</a> - <a href="https://github.com/decalage2/oletools">Repository</a> - <a href="https://twitter.com/decalage2">Updates on Twitter</a> <a href="https://github.com/decalage2/oletools/blob/master/cheatsheet/oletools_cheatsheet.pdf">Cheatsheet</a></p> |
| 23 | 23 | <p>Note: python-oletools is not related to OLETools published by BeCubed Software.</p> | ... | ... |
oletools/README.rst
| ... | ... | @@ -240,6 +240,6 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 240 | 240 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 241 | 241 | |
| 242 | 242 | .. |PyPI| image:: https://img.shields.io/pypi/v/oletools.svg |
| 243 | - :target: https://pypi.python.org/pypi/oletools | |
| 243 | + :target: https://pypi.org/project/oletools/ | |
| 244 | 244 | .. |Build Status| image:: https://travis-ci.org/decalage2/oletools.svg?branch=master |
| 245 | 245 | :target: https://travis-ci.org/decalage2/oletools | ... | ... |
oletools/mraptor_milter.py
| ... | ... | @@ -405,7 +405,7 @@ if __name__ == "__main__": |
| 405 | 405 | daemon.start() |
| 406 | 406 | |
| 407 | 407 | # Using python-daemon - Does not work as-is, need to create the PID file |
| 408 | - # See https://pypi.python.org/pypi/python-daemon/ | |
| 408 | + # See https://pypi.org/project/python-daemon/ | |
| 409 | 409 | # See PEP-3143: https://www.python.org/dev/peps/pep-3143/ |
| 410 | 410 | # import daemon |
| 411 | 411 | # import lockfile | ... | ... |
oletools/thirdparty/colorclass/__init__.py
| ... | ... | @@ -5,7 +5,7 @@ Supported natively on Linux and Mac OSX (Just Works), and on Windows it works th |
| 5 | 5 | Gives you expected and sane results from methods like len() and .capitalize(). |
| 6 | 6 | |
| 7 | 7 | https://github.com/Robpol86/colorclass |
| 8 | -https://pypi.python.org/pypi/colorclass | |
| 8 | +https://pypi.org/project/colorclass/ | |
| 9 | 9 | """ |
| 10 | 10 | |
| 11 | 11 | from colorclass.codes import list_tags # noqa | ... | ... |
setup.py
| ... | ... | @@ -52,7 +52,7 @@ url = "http://www.decalage.info/python/oletools" |
| 52 | 52 | license = "BSD" |
| 53 | 53 | download_url = "https://github.com/decalage2/oletools/releases" |
| 54 | 54 | |
| 55 | -# see https://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 55 | +# see https://pypi.org/pypi?%3Aaction=list_classifiers | |
| 56 | 56 | classifiers=[ |
| 57 | 57 | "Development Status :: 4 - Beta", |
| 58 | 58 | "Intended Audience :: Developers", | ... | ... |