From 6356a788c22eab79a5c5170924331b6c769b91f2 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Fri, 12 Sep 2014 13:19:16 -0700 Subject: [PATCH] Renamed and restructured project --- {mumble-music-bot => mumbledj}/__init__.py | 0 {mumble-music-bot => mumbledj}/config.py | 0 {mumble-music-bot => mumbledj}/musicbot.py | 0 mumbledj/pymumble/.gitignore | 63 ++++++++++++++++++++++ {pymumble => mumbledj/pymumble}/README.md | 0 5 files changed, 63 insertions(+) rename {mumble-music-bot => mumbledj}/__init__.py (100%) rename {mumble-music-bot => mumbledj}/config.py (100%) rename {mumble-music-bot => mumbledj}/musicbot.py (100%) create mode 100644 mumbledj/pymumble/.gitignore rename {pymumble => mumbledj/pymumble}/README.md (100%) diff --git a/mumble-music-bot/__init__.py b/mumbledj/__init__.py similarity index 100% rename from mumble-music-bot/__init__.py rename to mumbledj/__init__.py diff --git a/mumble-music-bot/config.py b/mumbledj/config.py similarity index 100% rename from mumble-music-bot/config.py rename to mumbledj/config.py diff --git a/mumble-music-bot/musicbot.py b/mumbledj/musicbot.py similarity index 100% rename from mumble-music-bot/musicbot.py rename to mumbledj/musicbot.py diff --git a/mumbledj/pymumble/.gitignore b/mumbledj/pymumble/.gitignore new file mode 100644 index 0000000..2f7fed6 --- /dev/null +++ b/mumbledj/pymumble/.gitignore @@ -0,0 +1,63 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.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 + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# pymumble files +pycelt/ +pyopus/ +*.py +mumble.proto +TODO +LICENSE +API.md diff --git a/pymumble/README.md b/mumbledj/pymumble/README.md similarity index 100% rename from pymumble/README.md rename to mumbledj/pymumble/README.md