Exclude static/css from package_data since package_data does not handle

the copying of subdirectories implicitly.
This commit is contained in:
Sean C. Farley 2012-02-01 14:16:34 -05:00
parent b2fcfffb3b
commit c34e52f0b1

View File

@ -24,7 +24,9 @@ setup(
'djangorestframework.runtests',
'djangorestframework.utils'],
package_dir={'djangorestframework': 'djangorestframework'},
package_data = {'djangorestframework': ['templates/*', 'static/*']},
package_data = {'djangorestframework': ['templates/*', 'static/*',
'static/css/*']},
exclude_package_data = {'djangorestframework': ['static/css']},
test_suite = 'djangorestframework.runtests.runcoverage.main',
install_requires=['URLObject>=0.6.0'],
classifiers = [