Use seuptools to be explicit about optional version-dependency of markdown.

This commit is contained in:
Marko Tibold 2012-04-11 23:51:00 +02:00
parent a07212389d
commit 64a49905a4
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,11 @@
Release Notes Release Notes
============= =============
0.4.0-dev
---------
* Markdown < 2.0 is no longer supported.
0.3.3 0.3.3
----- -----

View File

@ -64,6 +64,9 @@ setup(
package_data=get_package_data('djangorestframework'), package_data=get_package_data('djangorestframework'),
test_suite='djangorestframework.runtests.runcoverage.main', test_suite='djangorestframework.runtests.runcoverage.main',
install_requires=['URLObject>=0.6.0'], install_requires=['URLObject>=0.6.0'],
extras_require={
'markdown': ["Markdown>=2.0"]
},
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Environment :: Web Environment', 'Environment :: Web Environment',