Skip to content

Commit

Permalink
Merge pull request #94 from ChristianKuehnel/doc
Browse files Browse the repository at this point in the history
updated setup.py
  • Loading branch information
Open Home Automation authored Apr 17, 2018
2 parents 15171fa + 60da523 commit cd1983f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.4.2"
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bluepy==1.1.4
pygatt==3.2.0
btlewrap==0.0.1
btlewrap==0.0.2
17 changes: 14 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
"""Python package description."""
import os
from setuptools import setup, find_packages


def readme():
"""Load the readme file."""
readme_path = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme_path, 'r') as readme_file:
return readme_file.read()


setup(
name='miflora',
version='0.3',
version='0.4',
description='Library to read data from Mi Flora sensor',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/open-homeautomation/miflora',
author='Daniel Matuschek',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
Expand All @@ -21,6 +32,6 @@
packages=find_packages(),
keywords='plant sensor bluetooth low-energy ble',
zip_safe=False,
install_requires=['btlewrap==0.0.1'],
install_requires=['btlewrap==0.0.2'],
extras_require={'testing': ['pytest']}
)

0 comments on commit cd1983f

Please sign in to comment.