Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed Nov 5, 2012
1 parent 13a1d42 commit 917e83f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -600,8 +600,8 @@ Contributors
Changes
=======

1.4.2dev
--------
1.4.2
-----

- ``bdaja.trigger`` also accepts object as returned by ``bdajax.parsetarget``
as target argument.
Expand Down
30 changes: 17 additions & 13 deletions setup.py
@@ -1,39 +1,43 @@
from setuptools import setup, find_packages
import sys, os
import os
from setuptools import (
setup,
find_packages,
)

version = '1.4.1'

version = '1.4.2'
shortdesc = 'Ajax convenience.'
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'LICENSE.rst')).read()


setup(name='bdajax',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='',
author='BlueDynamics Alliance',
author_email='dev@bluedynamics.com',
url=u'https://github.com/bluedynamics/bdajax',
license='GNU General Public Licence',
packages=find_packages('src'),
package_dir = {'': 'src'},
package_dir={'': 'src'},
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require = dict(
extras_require=dict(
),
tests_require=[
],
test_suite = "",
entry_points = """
"""
)
test_suite="",
entry_points="""
""")

0 comments on commit 917e83f

Please sign in to comment.