From 3faf3c621e7949726454518ff6966119d85c89b5 Mon Sep 17 00:00:00 2001 From: Simon Albinsson Date: Sat, 7 Apr 2018 22:23:17 +0000 Subject: [PATCH] adds basic setup.py --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1da2a57 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Learn more: https://github.com/zinob/RPI_SGP30 + +from setuptools import setup, find_packages + +with open('README.md') 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.0', + long_description=readme, + author='Kenneth Reitz', + author_email='pipmon@zinob.se', + url='https://github.com/zinob/RPI_SGP30', + license=license, + packages=find_packages(exclude=('tests')) +)