Skip to content

Commit

Permalink
Boost the version to 0.1 beta. RC soon
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscar Carballal Prego committed Jul 16, 2015
1 parent 08b1d12 commit c89c727
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nToklo API Python connector

Version: 0.1 alpha
Version: 0.1 beta

This library will allow you to connect to the nToklo API and create your own applications, get tokens and the results. Full documentation of the API can
be found [in the nToklo dev website](https://docs.ntoklo.com)
Expand All @@ -17,6 +17,7 @@ This is a list of the functionality that is available on this API connector:
* Blacklist (add, remove)
* Products (create)
* Recommendations (get)
* Charts (get)

## Dependencies

Expand All @@ -38,6 +39,10 @@ If you want the latest version from the repository you can do:

You can see how to use this library on the [documentation](http://ntokloapi-python.readthedocs.org/en/latest/)

## Authors

- Oscar Carballal Prego <oscar.carballal@ntoklo.com>

## License

This library is licensed under the Apache 2.0 license. See LICENSE for more
Expand Down
17 changes: 2 additions & 15 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,17 @@
import os
import shlex

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.

sys.path.insert(0, os.path.abspath('../..'))
# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = '1.3'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
Expand All @@ -48,10 +38,7 @@
# The encoding of source files.
#source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = 'ntokloapi-python'
copyright = '2015, nToklo Ltd.'
author = 'Oscar Carballal Prego'
Expand All @@ -63,7 +50,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1 alpha'
release = '0.1 beta'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ntokloapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .exceptions import IncorrectPythonVersion


__version__ = "0.1 alpha"
__version__ = "0.1 beta"

# Check for python version before anything
if not sys.version_info[:2] >= (2, 7):
Expand Down

0 comments on commit c89c727

Please sign in to comment.