Commit f3d51f2938332fb0d1106745c7158c442baeb09b

Authored by decalage2
1 parent 424f027c

updated readme with links to github

Showing 2 changed files with 103 additions and 4 deletions
.gitignore 0 → 100644
  1 +# Created by .ignore support plugin (hsz.mobi)
  2 +### Example user template template
  3 +### Example user template
  4 +
  5 +# IntelliJ project files
  6 +.idea
  7 +*.iml
  8 +out
  9 +gen### Python template
  10 +# Byte-compiled / optimized / DLL files
  11 +__pycache__/
  12 +*.py[cod]
  13 +*$py.class
  14 +
  15 +# C extensions
  16 +*.so
  17 +
  18 +# Distribution / packaging
  19 +.Python
  20 +env/
  21 +build/
  22 +develop-eggs/
  23 +dist/
  24 +downloads/
  25 +eggs/
  26 +.eggs/
  27 +lib/
  28 +lib64/
  29 +parts/
  30 +sdist/
  31 +var/
  32 +*.egg-info/
  33 +.installed.cfg
  34 +*.egg
  35 +
  36 +# PyInstaller
  37 +# Usually these files are written by a python script from a template
  38 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
  39 +*.manifest
  40 +*.spec
  41 +
  42 +# Installer logs
  43 +pip-log.txt
  44 +pip-delete-this-directory.txt
  45 +
  46 +# Unit test / coverage reports
  47 +htmlcov/
  48 +.tox/
  49 +.coverage
  50 +.coverage.*
  51 +.cache
  52 +nosetests.xml
  53 +coverage.xml
  54 +*,cover
  55 +.hypothesis/
  56 +
  57 +# Translations
  58 +*.mo
  59 +*.pot
  60 +
  61 +# Django stuff:
  62 +*.log
  63 +local_settings.py
  64 +
  65 +# Flask stuff:
  66 +instance/
  67 +.webassets-cache
  68 +
  69 +# Scrapy stuff:
  70 +.scrapy
  71 +
  72 +# Sphinx documentation
  73 +docs/_build/
  74 +
  75 +# PyBuilder
  76 +target/
  77 +
  78 +# IPython Notebook
  79 +.ipynb_checkpoints
  80 +
  81 +# pyenv
  82 +.python-version
  83 +
  84 +# celery beat schedule file
  85 +celerybeat-schedule
  86 +
  87 +# dotenv
  88 +.env
  89 +
  90 +# virtualenv
  91 +venv/
  92 +ENV/
  93 +
  94 +# Spyder project settings
  95 +.spyderproject
  96 +
  97 +# Rope project settings
  98 +.ropeproject
  99 +
... ...
README.md
... ... @@ -12,9 +12,9 @@ See [http://www.decalage.info/python/oletools](http://www.decalage.info/python/o
12 12 [Home page](http://www.decalage.info/python/oletools) -
13 13 [Download/Install](https://bitbucket.org/decalage/oletools/wiki/Install) -
14 14 [Documentation](https://bitbucket.org/decalage/oletools/wiki) -
15   -[Report Issues/Suggestions/Questions](https://bitbucket.org/decalage/oletools/issues?status=new&status=open) -
  15 +[Report Issues/Suggestions/Questions](https://github.com/decalage2/oletools/issues) -
16 16 [Contact the Author](http://decalage.info/contact) -
17   -[Repository](https://bitbucket.org/decalage/oletools) -
  17 +[Repository](https://github.com/decalage2/oletools) -
18 18 [Updates on Twitter](https://twitter.com/decalage2)
19 19  
20 20 Note: python-oletools is not related to OLETools published by BeCubed Software.
... ... @@ -120,12 +120,12 @@ This is a personal open-source project, developed on my spare time. Any contribu
120 120 report is welcome.
121 121  
122 122 To suggest improvements, report a bug or any issue, please use the
123   -[issue reporting page](https://bitbucket.org/decalage/olefileio_pl/issues?status=new&status=open), providing all the
  123 +[issue reporting page](https://github.com/decalage2/oletools/issues), providing all the
124 124 information and files to reproduce the problem.
125 125  
126 126 You may also [contact the author](http://decalage.info/contact) directly to provide feedback.
127 127  
128   -The code is available in [a Mercurial repository on Bitbucket](https://bitbucket.org/decalage/oletools). You may use it
  128 +The code is available in [a GitHub repository](https://github.com/decalage2/oletools). You may use it
129 129 to submit enhancements using forks and pull requests.
130 130  
131 131 License
... ...