diff --git a/.gitignore b/.gitignore index d18402d..f88a033 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,8 @@ *.pyc .*.swp +.installed.cfg +bin +develop-eggs +dist +django_app_template.egg-info +parts diff --git a/buildout.cfg b/buildout.cfg index 7150409..60105b1 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -4,7 +4,7 @@ develop = . [django] recipe = djangorecipe -version = 1.0.2 +version = trunk project = django_app_template projectegg = ${django:project} settings = testsettings diff --git a/setup.py b/setup.py index c800784..33f6cdc 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,8 @@ 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], - packages = find_packages(), + #packages = find_packages('src'), + packages = {'': 'src'}, include_package_data = True, zip_safe = False, )