Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #32 from garciparedes/master
Browse files Browse the repository at this point in the history
Issue 31
  • Loading branch information
garciparedes authored Aug 19, 2019
2 parents 749625a + 1655c16 commit 67cb9ec
Show file tree
Hide file tree
Showing 33 changed files with 631 additions and 109 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/version_release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ labels: ''
assignees: ''

---
**Reference related Issues**
Include a list of related issues.

**Set a release date**
A date and time specifying the release of the new version.
Expand Down
13 changes: 13 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
formats: all
python:
version: 3.7
install:
- method: pip
path: .
extra_requirements:
- docs
system_packages: false
sphinx:
builder: html
configuration: docs/source/conf.py
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ python:
cache: pip
install:
- 'pip install pipenv'
- 'pipenv sync --dev'
- 'pipenv sync'
script:
- 'coverage run --source=jinete --module unittest discover tests'
- 'pipenv run coverage run --source=jinete --module unittest discover tests'
after_success:
- 'codecov'
- 'pipenv run codecov'
5 changes: 1 addition & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
coverage = "*"
coloredlogs = "*"
codecov = "*"

[packages]
jinete = {editable = true,path = "."}
jinete = {editable = true,extras = ["all"],path = "."}

[requires]
python_version = "3.7"
208 changes: 197 additions & 11 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ result = dispatcher.run()
```

## Documentation
You can find the documentation at: https://jinete.readthedocs.io/
You can find the documentation at: https://jinete.readthedocs.io


## Development
Expand Down
20 changes: 20 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
35 changes: 35 additions & 0 deletions docs/make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@ECHO OFF

pushd %~dp0

REM Command file for Sphinx documentation

if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=source
set BUILDDIR=build

if "%1" == "" goto help

%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)

%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
goto end

:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%

:end
popd
7 changes: 7 additions & 0 deletions docs/source/api_reference/api_reference.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
API reference
=============

.. toctree::
:glob:

jinete
Loading

0 comments on commit 67cb9ec

Please sign in to comment.