Added setup.py and reorganized the project.
parent
7532912d21
commit
c7eed7fe71
|
@ -0,0 +1,4 @@
|
|||
Geoffrey (pronounced JOFF-ree) started his life as an inside joke none of you will understand.
|
||||
At some point, she was to become an airhorn bot. Now, they know where your stuff is.
|
||||
|
||||
Please respect Geoffrey, the bot is very sensitive.
|
|
@ -0,0 +1,2 @@
|
|||
__version__ = '1.0dev'
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
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',
|
||||
]}
|
||||
)
|
Loading…
Reference in New Issue