From 5ccf167c3e078be8eb80222fb145be6fdc38d071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nathana=C3=ABl=20L=C3=A9caud=C3=A9?= Date: Tue, 15 Nov 2016 11:16:38 -0500 Subject: [PATCH] Update setup.py --- .gitignore | 4 +++- setup.py | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 8e58da1..5d0a8ad 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ *.swp test.py *.DS_Store -*.sublime-workspace \ No newline at end of file +*.sublime-workspace +dist +MANIFEST diff --git a/setup.py b/setup.py index 46027fe..4297d03 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ # -*- coding: utf-8 -*- -from setuptools import setup from phue import __version__ +from distutils.core import setup -setup(name='phue', - version=__version__, - author='Nathanaël Lécaudé', - url='https://github.com/studioimaginaire/phue', - license='MIT', - description='A Philips Hue Python library', - long_description='A Philips Hue Python library', - py_modules=['phue'], - ) +setup( + name = 'phue', + version = __version__, + description = 'A Philips Hue Python library', + author = 'Nathanaël Lécaudé', + license='MIT', + url = 'https://github.com/studioimaginaire/phue', + py_modules=['phue'], +)