Skip to content

Commit 159ef93

Browse files
committed
updating packaging
1 parent b30daee commit 159ef93

File tree

5 files changed

+30
-23
lines changed

5 files changed

+30
-23
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ recursive-include zinnia/locale *
99
recursive-include zinnia/media *
1010
recursive-include zinnia/templates *.txt *.html *.js
1111
prune docs/build
12+
prune docs/_build
1213
prune zinnia/media/zinnia/css/src/.sass-cache

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,12 @@ Take a look at the online demo at : http://django-blog-zinnia.com
5151
or you can visit these websites who use Zinnia.
5252

5353
* `Fantomas' side
54-
<http://fantomas.willbreak.it/blog/>`_.
54+
<http://fantomas.willbreak.it/blog/>`_ / `Mobile version
55+
<http://m.fantomas.willbreak.it/blog/>`_.
5556
* `Professional Web Studio
5657
<http://www.professionalwebstudio.com/en/weblog/>`_.
5758
* `mixedCase
5859
<http://www.mixedcase.nl/articles/>`_.
59-
* `Fantomas' mobile side
60-
<http://m.fantomas.willbreak.it/blog/>`_.
6160
* `MadCad's Page
6261
<http://mad-cad.net/blog/>`_.
6362

docs/changelog.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,3 @@ CHANGELOG
5555

5656
* The previous versions of Zinnia were not packaged, and were destinated for a
5757
personnal use.
58-
59-
60-

docs/install.rst

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,25 @@ Dependencies
66

77
Make sure to install these packages prior to installation :
88

9-
* Django
10-
* django-mptt
11-
* django-tagging
12-
* BeautifulSoup
9+
* `Django
10+
<http://www.djangoproject.com/>`_ >= 1.2
11+
* `django-mptt
12+
<https://github.com/django-mptt/django-mptt/>`_ >= 0.4.2
13+
* `django-tagging
14+
<http://code.google.com/p/django-tagging/>`_ >= 0.3.1
15+
* `BeautifulSoup
16+
<http://www.crummy.com/software/BeautifulSoup/>`_ >= 3.2.0
1317

1418
The packages below are optionnal but needed for run the full test suite.
1519

16-
* akismet
17-
* pyparsing
18-
* django-xmlrpc
20+
* `akismet
21+
<http://www.voidspace.org.uk/python/modules.shtml#akismet>`_ >= 0.2.0
22+
* `pyparsing
23+
<http://pyparsing.wikispaces.com/>`_ >= 1.5.5
24+
* `django-xmlrpc
25+
<https://github.com/Fantomas42/django-xmlrpc>`_ >= 0.1.3
1926

20-
Getting the code
27+
Getting the code
2128
----------------
2229

2330
You could retrieve the last sources from
@@ -35,7 +42,7 @@ For the latest stable version use easy_install ::
3542
$ easy_install django-blog-zinnia
3643

3744
Note that using *easy_install* or *pip* all the dependencies will be
38-
resolved automaticaly.
45+
resolved automaticaly excepting Django.
3946

4047
Applications
4148
------------

setup.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77
version=zinnia.__version__,
88

99
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',
1215

1316
author=zinnia.__author__,
1417
author_email=zinnia.__email__,
@@ -28,10 +31,10 @@
2831
license=zinnia.__license__,
2932
include_package_data=True,
3033
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',
3540
])
36-
37-

0 commit comments

Comments
 (0)