diff --git a/setup.py b/setup.py index 266257f..416a2c3 100755 --- a/setup.py +++ b/setup.py @@ -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 = "luke@iogopro.co.uk", + author="Luke McCarthy", + author_email="luke@iogopro.co.uk", licence="MIT", - url = "http://github.com/shaurz/fsmonitor", + url="http://github.com/shaurz/fsmonitor", install_requires=requires, - packages = ["fsmonitor"], + packages=["fsmonitor"], )