Skip to content

Commit

Permalink
Add continuous integration and other badges
Browse files Browse the repository at this point in the history
  • Loading branch information
aptiko committed Jul 8, 2016
1 parent 3aa2d76 commit 99521fe
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: python

python:
- "3.3"
- "3.4"
- "3.5"

install:
- pip install codecov

script:
- coverage run setup.py test

after_success:
- codecov
24 changes: 23 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
==================================================
Enhydris - Web-based hydro/meteorological database
==================================================

.. image:: https://travis-ci.org/openmeteo/enhydris.svg?branch=master
:alt: Build button
:target: https://travis-ci.org/openmeteo/enhydris

.. image:: https://codecov.io/github/openmeteo/enhydris/coverage.svg?branch=master
:alt: Coverage
:target: https://codecov.io/gh/openmeteo/enhydris

.. image:: https://img.shields.io/pypi/l/enhydris.svg
:alt: License

.. image:: https://img.shields.io/pypi/status/enhydris.svg
:alt: Status

.. image:: https://img.shields.io/pypi/v/enhydris.svg
:alt: Latest version
:target: https://pypi.python.org/pypi/enhydris

Enhydris is a system for the storage and management of hydrological
and meteorological time series. You can see it in action at
http://openmeteo.org/.
Expand Down Expand Up @@ -30,7 +52,7 @@ Company`_, and `WQ DREAMS`_.
For more information about Enhydris, read its documentation in the
``doc`` directory or `live at readthedocs`_.

.. _live at readthedocs: http://enhydris.readthedocs.org/
.. _live at readthedocs: http://enhydris.readthedocs.io/

**Installing a development instance**

Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ def get_recursive_package_data(packagedir, subdirs):
'install_requires': installation_requirements,
'test_suite': 'runtests.runtests',
'tests_require': ['model-mommy>=1.2.4'],
'classifiers': [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: "
"GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Scientific/Engineering :: Atmospheric Science",
],
}

setup(**kwargs)

0 comments on commit 99521fe

Please sign in to comment.