mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Merge from default and change version and readme.rst
This commit is contained in:
parent
650de3533a
commit
44adcac64e
4 changed files with 16 additions and 7 deletions
13
README.rst
13
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 <https://core.telegram.org/bots/api>`_
|
||||
|
||||
You can `read the docs here <http://aiogram.readthedocs.io/en/latest/>`_.
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
from .bot import Bot
|
||||
|
||||
__version__ = '0.1'
|
||||
__version__ = '0.2b1'
|
||||
|
|
|
|||
|
|
@ -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'),
|
||||
]
|
||||
|
||||
|
|
|
|||
2
setup.py
2
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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue