From 29364cc2d95eeb81b93b6683d1319abec7abe387 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 19 Nov 2017 00:39:25 +0200 Subject: [PATCH] Change information about repo. (Migrate from Bitbucket to Github) Yep. I hate Github, but it opens more prospects for the promotion of the library. --- README.md | 4 ++-- README.rst | 20 ++++++++++---------- docs/source/index.rst | 22 ++++++++++++---------- setup.py | 5 +---- 4 files changed, 25 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 7ad1a8f8..404784e4 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,6 @@ You can [read the docs here](http://aiogram.readthedocs.io/en/latest/). - Russian community: [@aiogram_ru](https://t.me/aiogram_ru) - Pip: [aiogram](https://pypi.python.org/pypi/aiogram) - Docs: [ReadTheDocs](http://aiogram.readthedocs.io) - - Source: [Bitbucket repo](https://bitbucket.org/illemius/aiogram) - - Issues/Bug tracker: [Bitbucket issues tracker](https://bitbucket.org/illemius/aiogram/issues) + - Source: [Github repo](https://github.com/aiogram/aiogram) + - Issues/Bug tracker: [Github issues tracker](https://github.com/aiogram/aiogram/issues) - Test bot: [@aiogram_bot](https://t.me/aiogram_bot) diff --git a/README.rst b/README.rst index 7379d279..bc1a0634 100644 --- a/README.rst +++ b/README.rst @@ -1,27 +1,27 @@ AIOGramBot ========== -.. image:: https://img.shields.io/pypi/v/aiogram.svg +.. image:: https://img.shields.io/pypi/v/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: PyPi Package Version -.. image:: https://img.shields.io/pypi/status/aiogram.svg +.. image:: https://img.shields.io/pypi/status/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: PyPi status -.. image:: https://img.shields.io/pypi/pyversions/aiogram.svg +.. image:: https://img.shields.io/pypi/pyversions/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: Supported python versions -.. image:: https://readthedocs.org/projects/aiogram/badge/?version=latest +.. image:: https://img.shields.io/readthedocs/pip/stable.svg?style=flat-square :target: http://aiogram.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status -.. image:: https://img.shields.io/bitbucket/issues/illemius/aiogram.svg - :target: https://bitbucket.org/illemius/aiogram/issues - :alt: Bitbucket issues +.. image:: https://img.shields.io/github/issues/badges/shields.svg?style=flat-square + :target: https://github.com/aiogram/aiogram/issues + :alt: Github issues -.. image:: https://img.shields.io/pypi/l/aiogram.svg +.. image:: https://img.shields.io/pypi/l/aiogram.svg?style=flat-square :target: https://opensource.org/licenses/MIT :alt: MIT License @@ -38,6 +38,6 @@ Official aiogram resources - Russian community: `@aiogram_ru `_ - Pip: `aiogram `_ - Docs: `ReadTheDocs `_ -- Source: `Bitbucket repo `_ -- Issues/Bug tracker: `Bitbucket issues tracker `_ +- Source: `Github repo `_ +- Issues/Bug tracker: `Github issues tracker `_ - Test bot: `@aiogram_bot `_ diff --git a/docs/source/index.rst b/docs/source/index.rst index 1aceb314..727ae8eb 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -2,27 +2,27 @@ Welcome to aiogram's documentation! =================================== - .. image:: https://img.shields.io/pypi/v/aiogram.svg + .. image:: https://img.shields.io/pypi/v/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: PyPi Package Version - .. image:: https://img.shields.io/pypi/status/aiogram.svg + .. image:: https://img.shields.io/pypi/status/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: PyPi status - .. image:: https://img.shields.io/pypi/pyversions/aiogram.svg + .. image:: https://img.shields.io/pypi/pyversions/aiogram.svg?style=flat-square :target: https://pypi.python.org/pypi/aiogram :alt: Supported python versions - .. image:: https://readthedocs.org/projects/aiogram/badge/?version=latest + .. image:: https://img.shields.io/readthedocs/pip/stable.svg?style=flat-square :target: http://aiogram.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status - .. image:: https://img.shields.io/bitbucket/issues/illemius/aiogram.svg - :target: https://bitbucket.org/illemius/aiogram/issues - :alt: Bitbucket issues + .. image:: https://img.shields.io/github/issues/badges/shields.svg?style=flat-square + :target: https://github.com/aiogram/aiogram/issues + :alt: Github issues - .. image:: https://img.shields.io/pypi/l/aiogram.svg + .. image:: https://img.shields.io/pypi/l/aiogram.svg?style=flat-square :target: https://opensource.org/licenses/MIT :alt: MIT License @@ -37,8 +37,8 @@ Official aiogram resources - Russian community: `@aiogram_ru `_ - Pip: `aiogram `_ - Docs: `ReadTheDocs `_ -- Source: `Bitbucket repo `_ -- Issues/Bug tracker: `Bitbucket issues tracker `_ +- Source: `Github repo `_ +- Issues/Bug tracker: `Github issues tracker `_ - Test bot: `@aiogram_bot `_ Features @@ -48,6 +48,8 @@ Features - Be awesome - Make things faster - Have `FSM `_ +- Can reply into webhook + Contribute ---------- diff --git a/setup.py b/setup.py index d7922b07..9200f803 100755 --- a/setup.py +++ b/setup.py @@ -1,14 +1,11 @@ #!/usr/bin/env python3 -import string from distutils.core import setup from setuptools import PackageFinder from aiogram import VERSION -ALLOWED_SYMBOLS = string.ascii_letters + string.digits + '_-' - def get_description(): """ @@ -43,7 +40,7 @@ setup( name='aiogram', version=VERSION.version, packages=PackageFinder.find(exclude=('tests', 'examples', 'docs',)), - url='https://bitbucket.org/illemius/aiogram', + url='https://github.com/aiogram/aiogram', license='MIT', author='Alex Root Junior', author_email='jroot.junior@gmail.com',