diff options
| author | Rapptz <[email protected]> | 2016-06-28 00:59:12 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-06-28 00:59:12 -0400 |
| commit | 4c1b8d1de10954806a2fc6296763f2a03968842a (patch) | |
| tree | ff089bd4e629a9914eff05ef7471d9a2fb6043c2 /setup.py | |
| parent | Make PyNaCl optional (diff) | |
| download | discord.py-4c1b8d1de10954806a2fc6296763f2a03968842a.tar.xz discord.py-4c1b8d1de10954806a2fc6296763f2a03968842a.zip | |
Add PyNaCl to setuptool's extras requirements.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -21,6 +21,10 @@ readme = '' with open('README.md') as f: readme = f.read() +extras_require = { + 'voice': ['PyNaCl==1.0.1'], +} + setup(name='discord.py', author='Rapptz', url='https://github.com/Rapptz/discord.py', @@ -31,8 +35,9 @@ setup(name='discord.py', long_description=readme, include_package_data=True, install_requires=requirements, + extras_require=extras_require, classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', 'Intended Audience :: Developers', 'Natural Language :: English', |