From 538228af0411d862d558b3413decd6aa762f49be Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Mon, 7 Sep 2015 10:32:05 -0700 Subject: [PATCH] Minor PEP8 cleanup in setup.py. --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 40a250ccbc..0702fa9e68 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ os.chdir(os.path.dirname(os.path.realpath(__file__))) VERSION_PATH = os.path.join('evennia', 'VERSION.txt') OS_WINDOWS = os.name == "nt" + def get_requirements(): """ To update the requirements for Evennia, edit the requirements.txt @@ -67,10 +68,10 @@ def package_data(): setup( name='evennia', version=get_version(), - author = "Evennia community", - maintainer = "Griatch", - maintainer_email = "griatch AT gmail DOT com", - url = "http://www.evennia.com", + author="Evennia community", + maintainer="Griatch", + maintainer_email="griatch AT gmail DOT com", + url="http://www.evennia.com", description='A full-featured MUD building toolkit.', packages=find_packages(), scripts=get_scripts(),