prepare 0.4.14; add german translations; fix pypi restructured text; adding credits.rst

This commit is contained in:
Artur Barseghyan 2015-01-26 22:27:12 +01:00
parent ce0b9f4ed8
commit fb8b4708cf
6 changed files with 25 additions and 3 deletions

View file

@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.
0.4.14
-------------------------------------
2015-01-26
- German translations added.
0.4.13
-------------------------------------
2015-01-15

10
CREDITS.rst Normal file
View file

@ -0,0 +1,10 @@
Credits
======================
Authors
----------------------
- `Artur Barseghyan <https://github.com/barseghyanartur/>`_.
Contributors
----------------------
- `Maximilian Kindshofer <https://github.com/MaximilianKindshofer>`_ for
German translations.

View file

@ -6,6 +6,7 @@ include CHANGELOG.rst
#recursive-include src/fobi/locale/hy *
recursive-include src/fobi/locale/nl *
recursive-include src/fobi/locale/ru *
recursive-include src/fobi/locale/de *
# Static files except for the jquery-ui development bundle
recursive-include src/fobi/static *

2
make_pypi_long_description.sh Executable file
View file

@ -0,0 +1,2 @@
python setup.py --long-description | rst2html.py > builddocs/pypi.html
#python setup.py --long-description | rst2html.py | cat

View file

@ -4,8 +4,10 @@ from setuptools import setup, find_packages
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
readme = readme.replace('.. code-block:: none', '.. code-block::')
screenshots = open(os.path.join(os.path.dirname(__file__), 'SCREENSHOTS.rst')).read()
screenshots = screenshots.replace('.. image:: _static', '.. figure:: https://github.com/barseghyanartur/django-fobi/raw/master/docs/_static')
screenshots = screenshots.replace('.. code-block:: none', '.. code-block::')
except:
readme = ''
screenshots = ''
@ -43,6 +45,7 @@ static_dirs = [
locale_dirs = [
"src/fobi/locale/nl",
"src/fobi/locale/ru",
"src/fobi/locale/de",
]
templates = []
@ -58,7 +61,7 @@ for static_dir in static_dirs:
for locale_dir in locale_dirs:
locale_files += [os.path.join(locale_dir, f) for f in os.listdir(locale_dir)]
version = '0.4.13'
version = '0.4.14'
install_requires = [
'Pillow>=2.0.0',

View file

@ -1,6 +1,6 @@
__title__ = 'django-fobi'
__version__ = '0.4.13'
__build__ = 0x00001c
__version__ = '0.4.14'
__build__ = 0x00001d
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = 'Copyright (c) 2014-2015 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'