diff options
| author | tom christie tom@tomchristie.com | 2011-02-19 19:00:05 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-02-19 19:00:05 +0000 |
| commit | ded60f53089566835fc1d17880c602fb34a2d243 (patch) | |
| tree | ca36a8cb6a2ed0fb872857b3d4ed2feb167ab6ec | |
| parent | 114738ca721b3fd90cb0b00b4fde3b61d3bd93dc (diff) | |
| download | django-rest-framework-ded60f53089566835fc1d17880c602fb34a2d243.tar.bz2 | |
setup.py
| -rw-r--r-- | .hgignore | 1 | ||||
| -rw-r--r-- | setup.py | 11 |
2 files changed, 8 insertions, 4 deletions
@@ -8,6 +8,7 @@ docs/build html examples/media/pygments/* examples/media/objectstore/* +build/* .project .pydevproject .settings @@ -12,9 +12,11 @@ setup( description = "A lightweight REST framework for Django.", author = 'Tom Christie', author_email = 'tom@tomchristie.com', - packages = ['djangorestframework'], - include_package_data = True, - zip_safe = False, + packages = ['djangorestframework', + 'djangorestframework.templatetags', + 'djangorestframework.tests'], + package_dir={'djangorestframework': 'djangorestframework'}, + package_data = {'djangorestframework': ['templates/*', 'static/*']}, classifiers = [ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', @@ -25,4 +27,5 @@ setup( 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', ] -)
\ No newline at end of file +) + |
