|
7 | 7 | version=zinnia.__version__, |
8 | 8 |
|
9 | 9 | description='A clear and powerfull weblog application powered with Django', |
10 | | - long_description=open(os.path.join('README.rst')).read(), |
11 | | - keywords='django, blog', |
| 10 | + long_description='\n'.join([open('README.rst').read(), |
| 11 | + open(os.path.join('docs', 'install.rst')).read(), |
| 12 | + open(os.path.join('docs', 'developers.rst')).read(), |
| 13 | + open(os.path.join('docs', 'changelog.rst')).read(),]), |
| 14 | + keywords='django, blog, zinnia, post', |
12 | 15 |
|
13 | 16 | author=zinnia.__author__, |
14 | 17 | author_email=zinnia.__email__, |
|
28 | 31 | license=zinnia.__license__, |
29 | 32 | include_package_data=True, |
30 | 33 | zip_safe=False, |
31 | | - install_requires=['django-tagging', |
32 | | - 'django-mptt', |
33 | | - 'akismet', |
34 | | - 'BeautifulSoup', |
| 34 | + install_requires=['akismet>=0.2.0', |
| 35 | + 'pyparsing>=1.5.5', |
| 36 | + 'django-mptt>=0.4.2', |
| 37 | + 'django-tagging>=0.3.1', |
| 38 | + 'django-xmlrpc>=0.1.3', |
| 39 | + 'BeautifulSoup>=3.2.0', |
35 | 40 | ]) |
36 | | - |
37 | | - |
|
0 commit comments