diff --git a/__init__.py b/__init__.py deleted file mode 100644 index 8b13789..0000000 --- a/__init__.py +++ /dev/null @@ -1 +0,0 @@ - diff --git a/rpi-dht11/__init__.py b/rpi-dht11/__init__.py new file mode 100644 index 0000000..3cc762b --- /dev/null +++ b/rpi-dht11/__init__.py @@ -0,0 +1 @@ +"" \ No newline at end of file diff --git a/dht11.py b/rpi-dht11/dht11.py similarity index 100% rename from dht11.py rename to rpi-dht11/dht11.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f453ee6 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="rpi-dht11", + version="1.0.0", + author="szazo", + description="A package for reading data from DHT11", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/szazo/DHT11_Python.git", + packages=setuptools.find_packages() +) \ No newline at end of file