Browse Source

Update setup.py

pull/10109/head
dolfies 4 years ago
parent
commit
e366785761
  1. 28
      setup.py

28
setup.py

@ -1,4 +1,4 @@
from setuptools import setup from setuptools import setup, find_packages
import re import re
requirements = [] requirements = []
@ -41,30 +41,22 @@ extras_require = {
'sphinxcontrib-websupport', 'sphinxcontrib-websupport',
], ],
'speed': [ 'speed': [
'aiohttp[speedups]'
'orjson>=3.5.4', 'orjson>=3.5.4',
] ]
} }
packages = [ setup(name='discord.py-self',
'discord', author='Dolfies',
'discord.types', url='https://github.com/dolfies/discord.py-self',
'discord.ui',
'discord.webhook',
'discord.ext.commands',
'discord.ext.tasks',
]
setup(name='discord.py',
author='Rapptz',
url='https://github.com/Rapptz/discord.py',
project_urls={ project_urls={
"Documentation": "https://discordpy.readthedocs.io/en/latest/", "Documentation": "https://dolf.ml/discord.py-self",
"Issue tracker": "https://github.com/Rapptz/discord.py/issues", "Issue tracker": "https://github.com/dolfies/discord.py-self/issues",
}, },
version=version, version=version,
packages=packages, packages=find_packages(),
license='MIT', license='MIT',
description='A Python wrapper for the Discord API', description='A Python wrapper for the Discord user API',
long_description=readme, long_description=readme,
long_description_content_type="text/x-rst", long_description_content_type="text/x-rst",
include_package_data=True, include_package_data=True,
@ -83,6 +75,6 @@ setup(name='discord.py',
'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities', 'Topic :: Utilities',
'Typing :: Typed', # 'Typing :: Typed',
] ]
) )

Loading…
Cancel
Save