Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
natcl committed Nov 15, 2016
1 parent bb039cf commit 5ccf167
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,6 @@
*.swp
test.py
*.DS_Store
*.sublime-workspace
*.sublime-workspace
dist
MANIFEST
20 changes: 10 additions & 10 deletions 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'],
)

0 comments on commit 5ccf167

Please sign in to comment.