14 lines
361 B
Python
14 lines
361 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='Geoffrey',
|
||
|
version=__import__('geoffrey').__version__,
|
||
|
packages=['geoffrey'],
|
||
|
install_requires=['discord.py', 'SQLAlchemy', 'pymysql'],
|
||
|
long_description=open('README.txt').read(),
|
||
|
entry_points={
|
||
|
'console_scripts':
|
||
|
['geoffrey = geoffrey.Geoffrey:main',
|
||
|
]}
|
||
|
)
|