From 86a435e19fe8486c9e7953a26bb6307c960e32d1 Mon Sep 17 00:00:00 2001 From: Chris Mitchell Date: Wed, 27 May 2015 08:59:25 -0400 Subject: [PATCH] move conf inside djangui --- MANIFEST.in | 2 +- {conf => djangui/conf}/__init__.py | 0 {conf => djangui/conf}/project_template/__init__.py | 0 {conf => djangui/conf}/project_template/djangui_celery_app.py | 0 {conf => djangui/conf}/project_template/middleware.py | 0 {conf => djangui/conf}/project_template/requirements.txt | 0 {conf => djangui/conf}/project_template/settings/__init__.py | 0 .../conf}/project_template/settings/djangui_settings.py | 0 .../conf}/project_template/settings/user_settings.py | 0 {conf => djangui/conf}/project_template/urls/__init__.py | 0 {conf => djangui/conf}/project_template/urls/djangui_urls.py | 0 {conf => djangui/conf}/project_template/urls/user_urls.py | 0 12 files changed, 1 insertion(+), 1 deletion(-) rename {conf => djangui/conf}/__init__.py (100%) rename {conf => djangui/conf}/project_template/__init__.py (100%) rename {conf => djangui/conf}/project_template/djangui_celery_app.py (100%) rename {conf => djangui/conf}/project_template/middleware.py (100%) rename {conf => djangui/conf}/project_template/requirements.txt (100%) rename {conf => djangui/conf}/project_template/settings/__init__.py (100%) rename {conf => djangui/conf}/project_template/settings/djangui_settings.py (100%) rename {conf => djangui/conf}/project_template/settings/user_settings.py (100%) rename {conf => djangui/conf}/project_template/urls/__init__.py (100%) rename {conf => djangui/conf}/project_template/urls/djangui_urls.py (100%) rename {conf => djangui/conf}/project_template/urls/user_urls.py (100%) diff --git a/MANIFEST.in b/MANIFEST.in index f104e8d..35b7d31 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,5 +2,5 @@ include LICENSE include README.md recursive-include djangui/templates * recursive-include djangui/static * -recursive-include conf * +recursive-include djangui/conf * recursive-exclude * *.pyc diff --git a/conf/__init__.py b/djangui/conf/__init__.py similarity index 100% rename from conf/__init__.py rename to djangui/conf/__init__.py diff --git a/conf/project_template/__init__.py b/djangui/conf/project_template/__init__.py similarity index 100% rename from conf/project_template/__init__.py rename to djangui/conf/project_template/__init__.py diff --git a/conf/project_template/djangui_celery_app.py b/djangui/conf/project_template/djangui_celery_app.py similarity index 100% rename from conf/project_template/djangui_celery_app.py rename to djangui/conf/project_template/djangui_celery_app.py diff --git a/conf/project_template/middleware.py b/djangui/conf/project_template/middleware.py similarity index 100% rename from conf/project_template/middleware.py rename to djangui/conf/project_template/middleware.py diff --git a/conf/project_template/requirements.txt b/djangui/conf/project_template/requirements.txt similarity index 100% rename from conf/project_template/requirements.txt rename to djangui/conf/project_template/requirements.txt diff --git a/conf/project_template/settings/__init__.py b/djangui/conf/project_template/settings/__init__.py similarity index 100% rename from conf/project_template/settings/__init__.py rename to djangui/conf/project_template/settings/__init__.py diff --git a/conf/project_template/settings/djangui_settings.py b/djangui/conf/project_template/settings/djangui_settings.py similarity index 100% rename from conf/project_template/settings/djangui_settings.py rename to djangui/conf/project_template/settings/djangui_settings.py diff --git a/conf/project_template/settings/user_settings.py b/djangui/conf/project_template/settings/user_settings.py similarity index 100% rename from conf/project_template/settings/user_settings.py rename to djangui/conf/project_template/settings/user_settings.py diff --git a/conf/project_template/urls/__init__.py b/djangui/conf/project_template/urls/__init__.py similarity index 100% rename from conf/project_template/urls/__init__.py rename to djangui/conf/project_template/urls/__init__.py diff --git a/conf/project_template/urls/djangui_urls.py b/djangui/conf/project_template/urls/djangui_urls.py similarity index 100% rename from conf/project_template/urls/djangui_urls.py rename to djangui/conf/project_template/urls/djangui_urls.py diff --git a/conf/project_template/urls/user_urls.py b/djangui/conf/project_template/urls/user_urls.py similarity index 100% rename from conf/project_template/urls/user_urls.py rename to djangui/conf/project_template/urls/user_urls.py