Commit 0c8a5540 by benjaoming

Issue #68 - Add sorl-thumbnail to dependencies. Furthermore, add >=0.5.3 to…

Issue #68 - Add sorl-thumbnail to dependencies. Furthermore, add >=0.5.3 to django-mptt which has caused some reports. Read requirements.txt into setup.py to avoid hard coding and mismatches. Create 0.0.2 release which is not broken because README.md was missing from distribution file.
parent 5db399c9
include README.rst
include README.md
include requirements.txt
recursive-include wiki *.html *.txt *.png *.js *.css *.gif
recursive-include django_notify *.html *.txt *.png *.js *.css *.gif
......@@ -18,7 +18,8 @@ media_patterns = ( build_media_pattern("templates", "html") +
build_media_pattern("static", "png") +
build_media_pattern("static", "jpeg") +
build_media_pattern("static", "gif") +
build_media_pattern("", "rst")
build_media_pattern("", "md") +
build_media_pattern("", "requirements.txt")
)
packages = find_packages()
......@@ -30,7 +31,7 @@ package_data = dict(
setup(
name = "wiki",
version = "0.0.1",
version = "0.0.2",
author = "Benjamin Bach",
author_email = "benjamin@overtag.dk",
url = "http://www.django-wiki.org",
......@@ -40,13 +41,7 @@ setup(
packages=find_packages(exclude=["testproject","testproject.*"]),
long_description=read('README.md'),
zip_safe = False,
install_requires=[
'Django>=1.4',
'markdown',
'django-sekizai',
'south',
'django-mptt',
],
install_requires=read('requirements.txt').split("\n"),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment