diff --git a/README.rst b/README.rst index 06e23fc5..dabb003b 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ + +You can `read the docs here `_. \ No newline at end of file diff --git a/aiogram/__init__.py b/aiogram/__init__.py index daa7fbc8..09803208 100644 --- a/aiogram/__init__.py +++ b/aiogram/__init__.py @@ -1,3 +1,3 @@ from .bot import Bot -__version__ = '0.1' +__version__ = '0.2b1' diff --git a/docs/source/conf.py b/docs/source/conf.py index 6c339642..0a8ee3b3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,9 +56,9 @@ author = 'Illemius / Alex Root Junior' # 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. @@ -150,7 +150,7 @@ man_pages = [ # 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'), ] diff --git a/setup.py b/setup.py index 4b37d4e9..78e7990c 100644 --- a/setup.py +++ b/setup.py @@ -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',