trsync code refactored to meet the openstack standart
* Added Openstack template files
* utils and rsync_url and same tests moved to objects, utils and tests
* shell and tempfiles moved to trsync.utils module
* rsync_remote moved to trsync.objects module
* trsync.py renamed as trsync.objects.rsync_mirror module
* trsync_push.py and trsync_delete.py moved to trsync.cmd module
Change-Id: Ifd722c8f867832f888a1bacef5744fb56fc2ef1a
diff --git a/.gitignore b/.gitignore
index ba74660..3de2d85 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,57 +1,55 @@
-# Byte-compiled / optimized / DLL files
-__pycache__/
*.py[cod]
# C extensions
*.so
-# Distribution / packaging
-.Python
-env/
-build/
-develop-eggs/
-dist/
-downloads/
-eggs/
-.eggs/
-lib/
-lib64/
-parts/
-sdist/
-var/
-*.egg-info/
+# Packages
+*.egg*
+*.egg-info
+dist
+build
+eggs
+parts
+bin
+var
+sdist
+develop-eggs
.installed.cfg
-*.egg
-
-# PyInstaller
-# Usually these files are written by a python script from a template
-# before PyInstaller builds the exe, so as to inject date/other infos into it.
-*.manifest
-*.spec
+lib
+lib64
# Installer logs
pip-log.txt
-pip-delete-this-directory.txt
# Unit test / coverage reports
-htmlcov/
-.tox/
-.coverage
-.coverage.*
-.cache
+cover/
+.coverage*
+!.coveragerc
+.tox
nosetests.xml
-coverage.xml
-*,cover
+.testrepository
+.venv
# Translations
*.mo
-*.pot
-# Django stuff:
-*.log
+# Mr Developer
+.mr.developer.cfg
+.project
+.pydevproject
-# Sphinx documentation
-docs/_build/
+# Complexity
+output/*.html
+output/*/index.html
-# PyBuilder
-target/
+# Sphinx
+doc/build
+
+# pbr generates these
+AUTHORS
+ChangeLog
+
+# Editors
+*~
+.*.swp
+.*sw?
\ No newline at end of file