-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style(setup.py): Remove spaces around
=
- Loading branch information
1 parent
f5879e9
commit a6f09c6
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"], | ||
) |