Skip to content

Commit

Permalink
Update description for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoAndreaBuchmann committed Jun 23, 2020
1 parent f2642d0 commit 0f18f35
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
#!/usr/bin/env python3
""" bme280pi: the BME280 Sensor Reader for Raspberry Pi
# !/usr/bin/env python3
"""
bme280pi: the BME280 Sensor Reader for Raspberry Pi
This package provides:
- an intuitive way to access the Bosch BME280 sensor
- the ability to convert measurements into different units
"""
DOCLINES = (__doc__ or '').split("\n")

import os
import sys

from setuptools import setup, find_packages

here = os.path.dirname(__file__)
README = open(os.path.join(here, 'README.md')).read()


if sys.version_info.major < 3 or sys.version_info.minor < 5:
print("Package is for python 3.5 or later, please upgrade")
sys.exit(1)


setup(name='bme280pi',
version='1.0',
version='1.0.1',
license='MIT',
description = DOCLINES[0],
long_description = "\n".join(DOCLINES[2:]),
description="bme280pi: the BME280 Sensor Reader for Raspberry Pi",
long_description=README,
author='Marco-Andrea Buchmann',
url='https://www.github.com/MarcoAndreaBuchmann/bme280pi',
download_url = 'https://github.com/MarcoAndreaBuchmann/bme280pi/archive/v1.0.tar.gz',
download_url='https://github.com/MarcoAndreaBuchmann/bme280pi/archive/v1.0.tar.gz',
project_urls={"Bug Tracker": "https://github.com/MarcoAndreaBuchmann/bme280pi/issues",
"Source Code": "https://github.com/MarcoAndreaBuchmann/bme280pi"},
keywords=['Raspberry', 'Pi', 'Raspberry Pi', 'BME280', 'sensor',
'readout', 'temperature', 'pressure', 'humidity'],
platforms = ["Linux"],
platforms=["Linux"],
python_requires=">=3.5",
packages=find_packages(),
tests_require=["pytest"],
Expand Down

0 comments on commit 0f18f35

Please sign in to comment.