10 lines
305 B
Python
10 lines
305 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='Geoffrey-Discordbot',
|
|
version=__import__('GeoffreyBot').__version__,
|
|
packages=['GeoffreyBot, GeoffreyBot.cogs'],
|
|
install_requires=['git+https://github.com/Rapptz/discord.py@rewrite', 'requests'],
|
|
long_description=open('README').read(),
|
|
)
|