Skip to content

Commit

Permalink
docs: initial release
Browse files Browse the repository at this point in the history
* Initial release of the package documentation with a simple Travis CI
  configuration and a simple test suite. (closes reanahub#7)

Signed-off-by: Tibor Simko <[email protected]>
  • Loading branch information
tiborsimko committed Jan 25, 2017
1 parent c181e0f commit 930b7bd
Show file tree
Hide file tree
Showing 24 changed files with 991 additions and 36 deletions.
53 changes: 22 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
# This file is part of REANA.
# Copyright (C) 2017 CERN.
#
# REANA is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# REANA is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# REANA; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307, USA.
#
# In applying this license, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization or
# submit itself to any jurisdiction.

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so
Expand Down Expand Up @@ -43,47 +62,19 @@ htmlcov/
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject
# Vagrant
.vagrant
45 changes: 45 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This file is part of REANA.
# Copyright (C) 2017 CERN.
#
# REANA is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# REANA is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# REANA; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307, USA.
#
# In applying this license, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization or
# submit itself to any jurisdiction.

notifications:
email: false

sudo: true

language: python

cache:
- pip

python:
- "3.5"

before_install:
- travis_retry pip install --upgrade pip setuptools py
- travis_retry pip install twine wheel coveralls

install:
- travis_retry pip install -e .[all]

script:
- ./run-tests.sh

after_success:
- coveralls
7 changes: 7 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Authors
=======

* Diego Rodriguez <[email protected]>
* Jiri Kuncar <[email protected]>
* Lukas Heinrich <[email protected]>
* Tibor Simko <[email protected]>
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Changes
=======

Version 0.0.1 (YYYY-MM-DD)
--------------------------

- Initial public release.


.. admonition:: CAVEAT LECTOR

Please note that REANA is in an early developer preview alpha stage.
No detailed changelog is provided yet.
Loading

0 comments on commit 930b7bd

Please sign in to comment.