From 6685c27697e4ffbe55ec8dc8f4f9b6043975239a Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Wed, 20 May 2015 13:12:41 +1200 Subject: docs: first-pass conversion to bootstrap3 Crappy default styling for now. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index bffce805..9509ce7a 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,8 @@ setup( "coveralls>=0.4.1", "pathod>=%s, <%s" % ( version.MINORVERSION, version.NEXT_MINORVERSION - ) + ), + "countershape" ], 'contentviews': [ "pyamf>=0.6.1", -- cgit v1.2.3 From a05a70d8168a07c92b2a3ecbbb1958d85532efe3 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 30 May 2015 12:03:28 +1200 Subject: Add coding style check, reformat. --- setup.py | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 9509ce7a..4fa64628 100644 --- a/setup.py +++ b/setup.py @@ -67,13 +67,11 @@ setup( "Topic :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: Proxy Servers", - "Topic :: Software Development :: Testing" - ], + "Topic :: Software Development :: Testing"], packages=find_packages(), include_package_data=True, entry_points={ - 'console_scripts': console_scripts - }, + 'console_scripts': console_scripts}, install_requires=list(deps), extras_require={ 'dev': [ @@ -81,20 +79,15 @@ setup( "nose>=1.3.0", "nose-cov>=1.6", "coveralls>=0.4.1", - "pathod>=%s, <%s" % ( - version.MINORVERSION, version.NEXT_MINORVERSION - ), - "countershape" - ], + "pathod>=%s, <%s" % + (version.MINORVERSION, + version.NEXT_MINORVERSION), + "countershape"], 'contentviews': [ "pyamf>=0.6.1", "protobuf>=2.5.0", - "cssutils>=1.0" - ], + "cssutils>=1.0"], 'examples': [ "pytz", "harparser", - "beautifulsoup4" - ] - } -) + "beautifulsoup4"]}) -- cgit v1.2.3