diff --git a/Makefile b/Makefile deleted file mode 100644 index d1cafcf..0000000 --- a/Makefile +++ /dev/null @@ -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/* diff --git a/setup.py b/setup.py index 1bf173b..f563bb3 100644 --- a/setup.py +++ b/setup.py @@ -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')),