mirror of
https://github.com/yawaflua/Flask-Discord.git
synced 2026-02-04 10:14:15 +02:00
✔ Preserve the original meta
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
# Quart-Discord
|
# Quart-Discord
|
||||||
[](https://pypi.org/project/Flask-Discord/) [](https://flask-discord.readthedocs.io/en/latest/) [](https://discord.gg/7CrQEyP)
|
[](https://pypi.org/project/Quart-Discord/) [](https://quart-discord.readthedocs.io/en/latest/)
|
||||||
|
|
||||||
Discord OAuth2 extension for Quart.
|
Discord OAuth2 extension for Quart.
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ Discord OAuth2 extension for Quart.
|
|||||||
### Installation
|
### Installation
|
||||||
To install current latest release you can use following command:
|
To install current latest release you can use following command:
|
||||||
```sh
|
```sh
|
||||||
python3 -m pip install https://github.com/thec0sm0s/Flask-Discord.git@quart
|
python3 -m pip install Quart-Discord
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,8 @@ sys.path.append('../quart_discord/')
|
|||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
project = 'Quart-Discord'
|
project = 'Quart-Discord'
|
||||||
copyright = '2020, □ | The Cosmos'
|
copyright = '2020, Philip Dowie'
|
||||||
author = '□ | The Cosmos'
|
author = 'Philip Dowie'
|
||||||
|
|
||||||
with open('../quart_discord/__init__.py') as f:
|
with open('../quart_discord/__init__.py') as f:
|
||||||
ver = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
|
ver = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
|
||||||
|
|||||||
@@ -32,12 +32,12 @@ Installing
|
|||||||
You can install Quart-Discord directly from PyPI using PIP and following command
|
You can install Quart-Discord directly from PyPI using PIP and following command
|
||||||
in shell or command prompt: ::
|
in shell or command prompt: ::
|
||||||
|
|
||||||
python3 -m pip install -U https://github.com/thec0sm0s/Flask-Discord.git@quart
|
python3 -m pip install -U Quart-Discord
|
||||||
|
|
||||||
You can also install the latest development version (**maybe unstable/broken**) by
|
You can also install the latest development version (**maybe unstable/broken**) by
|
||||||
using following command: ::
|
using following command: ::
|
||||||
|
|
||||||
python3 -m pip install -U https://github.com/thec0sm0s/Flask-Discord.git@quart
|
python3 -m pip install -U git+https://github.com/jnawk/Quart-Discord.git
|
||||||
|
|
||||||
|
|
||||||
Basic Usage
|
Basic Usage
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -41,10 +41,10 @@ extra_requirements = {
|
|||||||
setup(
|
setup(
|
||||||
name='Quart-Discord',
|
name='Quart-Discord',
|
||||||
version=__get_version(),
|
version=__get_version(),
|
||||||
url='https://github.com/thec0sm0s/Flask-Discord/tree/quart',
|
url='https://github.com/jnawk/Quart-Discord',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Philip Dowie',
|
author='Philip Dowie',
|
||||||
author_email='deepakrajko14@gmail.com',
|
author_email='philip@jnawk.nz',
|
||||||
description='Discord OAuth2 extension for Quart.',
|
description='Discord OAuth2 extension for Quart.',
|
||||||
long_description=__doc__,
|
long_description=__doc__,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|||||||
Reference in New Issue
Block a user