Skip to content

Commit

Permalink
Merge from default and change version and readme.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
JrooTJunior committed Jun 3, 2017
1 parent 650de35 commit 44adcac
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
13 changes: 11 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# AIOGramBot
Asynchonyously Python framework for [Telegram Bot API](https://core.telegram.org/bots/api)
AIOGramBot
==========

.. image:: https://readthedocs.org/projects/aiogram/badge/?version=latest
:target: http://aiogram.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status


Asynchonyously Python framework for `Telegram Bot API <https://core.telegram.org/bots/api>`_

You can `read the docs here <http://aiogram.readthedocs.io/en/latest/>`_.
2 changes: 1 addition & 1 deletion aiogram/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .bot import Bot

__version__ = '0.1'
__version__ = '0.2b1'
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.2b1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -150,7 +150,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'aiogram', 'aiogram Documentation',
author, 'aiogram', 'One line description of project.',
author, 'aiogram', 'Asynchonyously Python framework for Telegram Bot API',
'Miscellaneous'),
]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_description():
setup(
name='aiogram',
version=version,
packages=PackageFinder.find(),
packages=PackageFinder.find(exclude=('tests', 'examples', 'docs',)),
url='https://bitbucket.org/illemius/aiogram',
license='MIT',
author='Alex Root Junior',
Expand Down

0 comments on commit 44adcac

Please sign in to comment.