Skip to content

Commit

Permalink
Style(setup.py): Remove spaces around =
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru authored and ljmccarthy committed Jun 21, 2018
1 parent f5879e9 commit a6f09c6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
requires = ["pypiwin32"]

setup(
name = "fsmonitor",
version = "0.1",
description = "Filesystem monitoring",
name="fsmonitor",
version="0.1",
description="Filesystem monitoring",
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
author = "Luke McCarthy",
author_email = "[email protected]",
author="Luke McCarthy",
author_email="[email protected]",
licence="MIT",
url = "http://github.com/shaurz/fsmonitor",
url="http://github.com/shaurz/fsmonitor",
install_requires=requires,
packages = ["fsmonitor"],
packages=["fsmonitor"],
)

0 comments on commit a6f09c6

Please sign in to comment.