comparison setup.py @ 12:2318792b83c6

Small PEP8 fixes and add author email.
author Simon Cross <hodgestar@gmail.com>
date Sun, 01 Sep 2013 14:08:42 +0200
parents 827ee160ff23
children 67387621c61b
comparison
equal deleted inserted replaced
11:1cd05cfec375 12:2318792b83c6
13 pass 13 pass
14 14
15 # This should probably be pulled from constants.py 15 # This should probably be pulled from constants.py
16 VERSION_STR = "0.1a" 16 VERSION_STR = "0.1a"
17 17
18 setup( # Metadata 18 setup(
19 name="nagslang", 19 name="nagslang",
20 version=VERSION_STR, 20 version=VERSION_STR,
21 description="naglsang: Game for PyWeek 17", 21 description="naglsang: Game for PyWeek 17",
22 22
23 author=(", ".join([ 23 author=(", ".join([
28 "Adrianna Pinska", 28 "Adrianna Pinska",
29 "Stefano Rivera", 29 "Stefano Rivera",
30 "David Sharpe", 30 "David Sharpe",
31 "Jeremy Thurgood", 31 "Jeremy Thurgood",
32 ])), 32 ])),
33 author_email="", 33 author_email="ctpug@googlegroups.com",
34 34
35 maintainer="Nagslang Team", 35 maintainer="Nagslang Team",
36 maintainer_email="ctpug@googlegroups.com", 36 maintainer_email="ctpug@googlegroups.com",
37 37
38 url="http://ctpug.org.za/", 38 url="http://ctpug.org.za/",