Skip to content

Commit

Permalink
App files were moved to src/django_app_template
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed May 22, 2009
1 parent 15e784b commit 491a0d2
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ develop-eggs
dist
django_app_template.egg-info
parts
build
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
from version import __version__ as version
from django_app_template import __version__ as version

setup(
name = 'django-app-template',
Expand All @@ -25,8 +25,8 @@
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
#packages = find_packages('src'),
packages = {'': 'src'},
package_dir = {'': 'src'},
packages = find_packages('src'),
include_package_data = True,
zip_safe = False,
)
Expand Down
1 change: 1 addition & 0 deletions src/django_app_template/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from version import __version__
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions src/django_app_template/testsettings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = '/tmp/django.db'
INSTALLED_APPS = ['django_app_template']
ROOT_URLCONF = ['django_app_template.urls']
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file removed src/templatetags/__init__.py
Empty file.

0 comments on commit 491a0d2

Please sign in to comment.