Updated contact information etc.

This commit is contained in:
Connor
2019-06-28 21:01:20 +10:00
parent 6415737639
commit de2e70136a
2 changed files with 5 additions and 19 deletions

View File

@@ -1,14 +0,0 @@
.PHONY: test test2 test3
test2:
python2 -m unittest discover
test3:
python3 -m unittest discover || true
test: test3 test2
uppload:
mkdir -p dist.old
mv dist/* dist.old/
python setup.py sdist
twine upload dist/*

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Learn more: https://github.com/zinob/RPI_SGP30
# Learn more: https://github.com/Conr86/PySGP30
from setuptools import setup, find_packages
@@ -9,12 +9,12 @@ with open('LICENSE') as f:
license = f.read()
setup(
name='sgp30',
name='pysgp30',
description='Library for reading data from the Sensirion SGP30',
version='0.1.5',
version='0.1.6',
long_description=readme,
author='Simon Albinsson',
author_email='pipmon@zinob.se',
author='Connor Kneebone',
author_email='connor@sfxrescue.com',
url='https://github.com/zinob/RPI_SGP30',
license='MIT',
packages=find_packages(exclude=('tests')),