mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-15 18:29:52 +00:00
Don't use find_packages here.
This commit is contained in:
parent
7f18efdafe
commit
716d04f6fa
4
setup.py
4
setup.py
@ -1,4 +1,4 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup
|
||||||
import re, os
|
import re, os
|
||||||
|
|
||||||
on_rtd = os.getenv('READTHEDOCS') == 'True'
|
on_rtd = os.getenv('READTHEDOCS') == 'True'
|
||||||
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user