Merge from default and change version and readme.rst

This commit is contained in:
Alex Root Junior 2017-06-03 12:33:45 +03:00
parent 650de3533a
commit 44adcac64e
4 changed files with 16 additions and 7 deletions

View file

@ -1,2 +1,11 @@
# AIOGramBot AIOGramBot
Asynchonyously Python framework for [Telegram Bot API](https://core.telegram.org/bots/api) ==========
.. 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/>`_.

View file

@ -1,3 +1,3 @@
from .bot import Bot from .bot import Bot
__version__ = '0.1' __version__ = '0.2b1'

View file

@ -56,9 +56,9 @@ author = 'Illemius / Alex Root Junior'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.1' version = '0.2'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.1' release = '0.2b1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -150,7 +150,7 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'aiogram', 'aiogram Documentation', (master_doc, 'aiogram', 'aiogram Documentation',
author, 'aiogram', 'One line description of project.', author, 'aiogram', 'Asynchonyously Python framework for Telegram Bot API',
'Miscellaneous'), 'Miscellaneous'),
] ]

View file

@ -13,7 +13,7 @@ def get_description():
setup( setup(
name='aiogram', name='aiogram',
version=version, version=version,
packages=PackageFinder.find(), packages=PackageFinder.find(exclude=('tests', 'examples', 'docs',)),
url='https://bitbucket.org/illemius/aiogram', url='https://bitbucket.org/illemius/aiogram',
license='MIT', license='MIT',
author='Alex Root Junior', author='Alex Root Junior',