Package for pypi
This commit is contained in:
15
CHANGES
Normal file
15
CHANGES
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
=========
|
||||||
|
CHANGELOG
|
||||||
|
=========
|
||||||
|
|
||||||
|
0.7.6 (2014-11-26)
|
||||||
|
==================
|
||||||
|
|
||||||
|
** New features **
|
||||||
|
|
||||||
|
- A setting to display (or not) the reset button has been added (@jsayles)
|
||||||
|
|
||||||
|
** Internal changes **
|
||||||
|
|
||||||
|
- Rendering is now based on a template (@andybak)
|
||||||
|
- Javascript is properly initialized (@andybak)
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
include README.rst LICENSE
|
include README.rst LICENSE CHANGES
|
||||||
recursive-include jsignature/static *.js
|
recursive-include jsignature/static *.js
|
||||||
recursive-include jsignature/locale *.mo
|
recursive-include jsignature/locale *.mo
|
||||||
recursive-include jsignature/templates *.html
|
recursive-include jsignature/templates *.html
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ It provides:
|
|||||||
:target: https://coveralls.io/r/fle/django-jsignature
|
:target: https://coveralls.io/r/fle/django-jsignature
|
||||||
|
|
||||||
|
|
||||||
.. image:: screen.png
|
.. image:: https://github.com/fle/django-jsignature/blob/master/screen.png
|
||||||
|
|
||||||
==================
|
==================
|
||||||
INSTALL
|
INSTALL
|
||||||
@@ -23,7 +23,7 @@ For now:
|
|||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
pip install https://github.com/fle/django-jsignature/archive/master.zip
|
pip install django-jsignature
|
||||||
|
|
||||||
==================
|
==================
|
||||||
USAGE
|
USAGE
|
||||||
|
|||||||
9
setup.py
9
setup.py
@@ -8,10 +8,11 @@ setup(
|
|||||||
version='0.7.6',
|
version='0.7.6',
|
||||||
author='Florent Lebreton',
|
author='Florent Lebreton',
|
||||||
author_email='florent.lebreton@makina-corpus.com',
|
author_email='florent.lebreton@makina-corpus.com',
|
||||||
url='https://github.com/makinacorpus/django-jsignature',
|
url='https://github.com/fle/django-jsignature',
|
||||||
download_url="http://pypi.python.org/pypi/django-jsignature/",
|
download_url="https://github.com/fle/django-jsignature/tarball/0.7.6",
|
||||||
description="Use jSignature jQuery plugin in your django projects",
|
description="Use jSignature jQuery plugin in your django projects",
|
||||||
long_description=open(os.path.join(here, 'README.rst')).read(),
|
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
|
||||||
|
open(os.path.join(here, 'CHANGES')).read(),
|
||||||
license='LPGL, see LICENSE file.',
|
license='LPGL, see LICENSE file.',
|
||||||
install_requires=['Django'],
|
install_requires=['Django'],
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
@@ -24,6 +25,6 @@ setup(
|
|||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Programming Language :: Python :: 2.7'],
|
'Programming Language :: Python :: 2.7'],
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user