This commit is contained in:
tom christie tom@tomchristie.com 2011-02-19 19:00:05 +00:00
parent 114738ca72
commit ded60f5308
2 changed files with 8 additions and 4 deletions

View File

@ -8,6 +8,7 @@ docs/build
html
examples/media/pygments/*
examples/media/objectstore/*
build/*
.project
.pydevproject
.settings

View File

@ -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',
]
)
)