Skip to content

Commit

Permalink
Merge pull request #19 from Cito/develop
Browse files Browse the repository at this point in the history
Various smaller fixes and cleanups.
  • Loading branch information
ralphbean committed Feb 10, 2013
2 parents 4b0daf6 + d8989ec commit 89a0060
Show file tree
Hide file tree
Showing 13 changed files with 742 additions and 617 deletions.
18 changes: 15 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
build/
dist/
*~
*.egg
*.egg-info
*.pyc
*.pyo
*.swp
build
dist
*.egg*
*.mak.py
*.DS_Store
.coverage
.idea
.noseids
.project
.pydevproject
.settings
nosetests.xml
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
_extra_mako = ["Mako >= 0.1.1"]
_extra_jinja = ["Jinja2"]

requires=[
requires = [
"tw2.core>=2.1.4",
]

Expand All @@ -24,37 +24,37 @@
name='tw2.forms',
version='2.1.4.1',
description='The basic form widgets for ToscaWidgets 2.',
long_description = open('README.rst').read().split('\n\n', 1)[1],
long_description=open('README.rst').read().split('\n\n', 1)[1],
author='Paul Johnston, Christopher Perkins, Alberto Valverde & contributors',
author_email='paj@pajhome.org.uk',
url='http://toscawidgets.org',
install_requires=requires,
packages=find_packages(exclude=['ez_setup', 'tests']),
namespace_packages = ['tw2'],
namespace_packages=['tw2'],
zip_safe=False,
include_package_data=True,
test_suite = 'nose.collector',
test_suite='nose.collector',
entry_points="""
[tw2.widgets]
# Register your widgets so they can be listed in the WidgetBrowser
tw2.forms = tw2.forms
""",
keywords = [
keywords=[
'toscawidgets.widgets',
],
tests_require = [
tests_require=[
'BeautifulSoup',
'nose',
'FormEncode',
'WebTest',
'strainer',
] + _extra_genshi + _extra_mako + _extra_jinja,
extras_require = {
extras_require={
'genshi': _extra_genshi,
'mako': _extra_mako,
'jinja': _extra_jinja,
},
classifiers = [
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Environment :: Web Environment :: ToscaWidgets',
Expand Down
Loading

0 comments on commit 89a0060

Please sign in to comment.