mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-07-20 18:06:47 +00:00
Make discord.ext a namespace package.
This commit is contained in:
parent
132ac45010
commit
bb8f5f4725
@ -1,12 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
"""
|
|
||||||
discord.py extensions
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
Extensions for the discord.py library live in this namespace.
|
|
||||||
|
|
||||||
:copyright: (c) 2017 Rapptz
|
|
||||||
:license: MIT, see LICENSE for more details.
|
|
||||||
|
|
||||||
"""
|
|
3
setup.py
3
setup.py
@ -29,7 +29,7 @@ setup(name='discord.py',
|
|||||||
author='Rapptz',
|
author='Rapptz',
|
||||||
url='https://github.com/Rapptz/discord.py',
|
url='https://github.com/Rapptz/discord.py',
|
||||||
version=version,
|
version=version,
|
||||||
packages=find_packages(),
|
packages=['discord', 'discord.ext.commands'],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
description='A python wrapper for the Discord API',
|
description='A python wrapper for the Discord API',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
@ -44,6 +44,7 @@ setup(name='discord.py',
|
|||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Software Development :: Libraries',
|
'Topic :: Software Development :: Libraries',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user