From 35b33787f59d766e3454494ed5a5879142ca8ce5 Mon Sep 17 00:00:00 2001 From: Jeff Valenti Date: Sat, 9 Jun 2018 19:53:20 -0400 Subject: [PATCH 1/2] remove spaces around keyword equals (flake8) --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 245dac2de..82b77459f 100644 --- a/setup.py +++ b/setup.py @@ -10,17 +10,17 @@ REQUIRES = ['astropy', 'astroquery', 'bokeh', 'django', 'matplotlib', 'numpy', 'python-dateutil', 'sphinx', 'sphinx-automodapi', 'sqlalchemy'] setup( - name = 'jwql', - version = VERSION, - description = 'The JWST Quicklook Project', - url = 'https://github.com/spacetelescope/jwql.git', - author = AUTHORS, + name='jwql', + version=VERSION, + description='The JWST Quicklook Project', + url='https://github.com/spacetelescope/jwql.git', + author=AUTHORS, author_email='jwql@stsci.edu', license='BSD', - keywords = ['astronomy', 'python'], - classifiers = ['Programming Language :: Python'], - packages = find_packages(), - install_requires = REQUIRES, + keywords=['astronomy', 'python'], + classifiers=['Programming Language :: Python'], + packages=find_packages(), + install_requires=REQUIRES, include_package_data=True, - include_dirs = [np.get_include()], + include_dirs=[np.get_include()], ) From 84a44e78dcf5f786e271d2af5141b274b303bcef Mon Sep 17 00:00:00 2001 From: Jeff Valenti Date: Sat, 9 Jun 2018 19:53:20 -0400 Subject: [PATCH 2/2] remove spaces around keyword equals (flake8) --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 56bd6a88a..eca1e20d0 100644 --- a/setup.py +++ b/setup.py @@ -10,17 +10,17 @@ REQUIRES = ['astropy', 'astroquery', 'bokeh==0.12.5', 'django', 'matplotlib', 'numpy', 'python-dateutil', 'sphinx', 'sphinx-automodapi', 'sqlalchemy'] setup( - name = 'jwql', - version = VERSION, - description = 'The JWST Quicklook Project', - url = 'https://github.com/spacetelescope/jwql.git', - author = AUTHORS, + name='jwql', + version=VERSION, + description='The JWST Quicklook Project', + url='https://github.com/spacetelescope/jwql.git', + author=AUTHORS, author_email='jwql@stsci.edu', license='BSD', - keywords = ['astronomy', 'python'], - classifiers = ['Programming Language :: Python'], - packages = find_packages(), - install_requires = REQUIRES, + keywords=['astronomy', 'python'], + classifiers=['Programming Language :: Python'], + packages=find_packages(), + install_requires=REQUIRES, include_package_data=True, - include_dirs = [np.get_include()], + include_dirs=[np.get_include()], )