mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-06-15 11:03:32 +03:00
setup.py
This commit is contained in:
parent
114738ca72
commit
ded60f5308
|
@ -8,6 +8,7 @@ docs/build
|
||||||
html
|
html
|
||||||
examples/media/pygments/*
|
examples/media/pygments/*
|
||||||
examples/media/objectstore/*
|
examples/media/objectstore/*
|
||||||
|
build/*
|
||||||
.project
|
.project
|
||||||
.pydevproject
|
.pydevproject
|
||||||
.settings
|
.settings
|
||||||
|
|
11
setup.py
11
setup.py
|
@ -12,9 +12,11 @@ setup(
|
||||||
description = "A lightweight REST framework for Django.",
|
description = "A lightweight REST framework for Django.",
|
||||||
author = 'Tom Christie',
|
author = 'Tom Christie',
|
||||||
author_email = 'tom@tomchristie.com',
|
author_email = 'tom@tomchristie.com',
|
||||||
packages = ['djangorestframework'],
|
packages = ['djangorestframework',
|
||||||
include_package_data = True,
|
'djangorestframework.templatetags',
|
||||||
zip_safe = False,
|
'djangorestframework.tests'],
|
||||||
|
package_dir={'djangorestframework': 'djangorestframework'},
|
||||||
|
package_data = {'djangorestframework': ['templates/*', 'static/*']},
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
|
@ -25,4 +27,5 @@ setup(
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user