Skip to content

Commit

Permalink
Fix for missing packages in pypi package
Browse files Browse the repository at this point in the history
jlusiardi committed May 28, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 4832ec5 commit acc0742
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -18,13 +18,13 @@

setup(
name='homekit',
packages=['homekit', 'homekit.model'], # this must be the same as the name above
version='0.8',
packages=['homekit', 'homekit.model', 'homekit.model.services', 'homekit.model.characteristics'],
version='0.9',
description='Python code to interface HomeKit Accessories and Controllers',
author='Joachim Lusiardi',
author_email='[email protected]',
url='https://github.com/jlusiardi/homekit_python',
download_url='https://github.com/jlusiardi/homekit_python/archive/0.8.tar.gz',
download_url='https://github.com/jlusiardi/homekit_python/archive/0.9.tar.gz',
keywords=['HomeKit'],
classifiers=[],
install_requires=[

0 comments on commit acc0742

Please sign in to comment.