Add cogs to setup.py

I forgot, this will also be needed to make a dist.
doc_update
Etzelia 2018-08-29 11:03:50 -05:00 committed by GitHub
parent 72bd148531
commit 6c603a953e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ from distutils.core import setup
setup(
name='Geoffrey',
version=__import__('geoffrey').__version__,
packages=['geoffrey'],
packages=['geoffrey', 'geoffrey.cogs'],
install_requires=['discord.py', 'SQLAlchemy', 'pymysql', 'requests'],
long_description=open('README.txt').read(),
)