Added setup.py and reorganized the project.

doc_update
Joey Hines 2018-08-20 17:54:14 -05:00
parent 7532912d21
commit c7eed7fe71
22 changed files with 19 additions and 0 deletions

4
README.txt 100644
View File

@ -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.

View File

@ -0,0 +1,2 @@
__version__ = '1.0dev'

13
setup.py 100644
View File

@ -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',
]}
)