mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 20:28:38 +00:00
Use setuputils.find_package to find extension modules.
This commit is contained in:
parent
7951a2374b
commit
cc8ddc7eae
4
setup.py
4
setup.py
@ -1,4 +1,4 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
import re
|
import re
|
||||||
|
|
||||||
requirements = []
|
requirements = []
|
||||||
@ -20,7 +20,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=['discord'],
|
packages=find_packages(),
|
||||||
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