diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e3168d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "2.5" + - "2.6" + - "2.7" +# Someday, soon. +# - "3.2" +install: python setup.py install +script: python setup.py test +notifications: + email: false + irc: + - "irc.freenode.net#toscawidgets" + on_success: change + on_failure: always diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..2b99258 --- /dev/null +++ b/README.rst @@ -0,0 +1,27 @@ +ToscaWidgets +============ + +ToscaWidgets is a web widget toolkit for Python to aid in the creation, +packaging and distribution of common view elements normally used in the web. + +tw2.forms contains the basic form widgets. + +Build Status +------------ + +.. |master| image:: https://secure.travis-ci.org/toscawidgets/tw2.forms.png?branch=master + :alt: Build Status - master branch + :target: http://travis-ci.org/#!/toscawidgets/tw2.forms + +.. |develop| image:: https://secure.travis-ci.org/toscawidgets/tw2.forms.png?branch=develop + :alt: Build Status - develop branch + :target: http://travis-ci.org/#!/toscawidgets/tw2.forms + ++----------+-----------+ +| Branch | Status | ++==========+===========+ +| master | |master| | ++----------+-----------+ +| develop | |develop| | ++----------+-----------+ + diff --git a/README.txt b/README.txt deleted file mode 100644 index 72be199..0000000 --- a/README.txt +++ /dev/null @@ -1,8 +0,0 @@ -ToscaWidgets -============ - -ToscaWidgets is a web widget toolkit for Python to aid in the creation, -packaging and distribution of common view elements normally used in the web. - -tw2.forms contains the basic form widgets. - diff --git a/setup.py b/setup.py index e639bb3..52472ee 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ name='tw2.forms', version='2.0.3', description='The basic form widgets for ToscaWidgets 2.', - long_description = open('README.txt').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',