From 184cc272eb63917c64def222f6c1866111c2ae47 Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Tue, 10 Oct 2017 15:48:09 -0700 Subject: [PATCH] fix issues uploading to pypi --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 2387bd6..60fdd0a 100755 --- a/setup.py +++ b/setup.py @@ -72,14 +72,13 @@ class UploadCommand(Command): # Where the magic happens: setup( name=NAME, - version='1.0.0', + version='1.0.2', description=DESCRIPTION, long_description=long_description, author=AUTHOR, author_email=EMAIL, url=URL, - # If your package is a single module, use this instead of 'packages': - py_modules=['pinhook'], + packages=['pinhook'], install_requires=REQUIRED, include_package_data=True, license='MIT',