Files
PySGP30/setup.py
Simon Albinsson 33dec0df92 Readme: Attempt to switch from md to rst
Adding the type annotation to setup.py didn't seem to help. Lets see if
restructured text renders better than md.
2018-04-22 20:24:15 +00:00

23 lines
579 B
Python

# -*- coding: utf-8 -*-
# Learn more: https://github.com/zinob/RPI_SGP30
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='sgp30',
description='Library for reading data from the sensiron SGP30',
version='0.1.2',
long_description=readme,
author='Simon Albinsson',
author_email='pipmon@zinob.se',
url='https://github.com/zinob/RPI_SGP30',
license=license,
packages=find_packages(exclude=('tests')),
install_requires=['smbus2']
)