Skip to content

Commit

Permalink
Merge pull request #87 from JeffValenti/flake8-setup
Browse files Browse the repository at this point in the history
remove spaces around keyword equals (flake8)
  • Loading branch information
bourque committed Jun 14, 2018
2 parents 2852060 + 631a95b commit a46d809
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()],
)

0 comments on commit a46d809

Please sign in to comment.