Minor PEP8 cleanup in setup.py.

This commit is contained in:
Greg Taylor 2015-09-07 10:32:05 -07:00 committed by Griatch
parent 886830b773
commit 538228af04

View file

@ -7,6 +7,7 @@ os.chdir(os.path.dirname(os.path.realpath(__file__)))
VERSION_PATH = os.path.join('evennia', 'VERSION.txt') VERSION_PATH = os.path.join('evennia', 'VERSION.txt')
OS_WINDOWS = os.name == "nt" OS_WINDOWS = os.name == "nt"
def get_requirements(): def get_requirements():
""" """
To update the requirements for Evennia, edit the requirements.txt To update the requirements for Evennia, edit the requirements.txt
@ -67,10 +68,10 @@ def package_data():
setup( setup(
name='evennia', name='evennia',
version=get_version(), version=get_version(),
author = "Evennia community", author="Evennia community",
maintainer = "Griatch", maintainer="Griatch",
maintainer_email = "griatch AT gmail DOT com", maintainer_email="griatch AT gmail DOT com",
url = "http://www.evennia.com", url="http://www.evennia.com",
description='A full-featured MUD building toolkit.', description='A full-featured MUD building toolkit.',
packages=find_packages(), packages=find_packages(),
scripts=get_scripts(), scripts=get_scripts(),