Skip to content

Commit 158f459

Browse files
committed
add setup.py
1 parent d50d66c commit 158f459

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="micropython-ahtx0",
8+
version="0.1.0",
9+
author="Andreas Bühl",
10+
author_email="code@abuehl.de",
11+
description="MicroPython driver for the AHT10 and AHT20 temperature and humindity sensors.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
keywords="aht10, aht20, micropython, temperature, humidity, sensor, i2c",
15+
url="https://github.com/targetblank/micropython_ahtx0",
16+
packages=setuptools.find_packages(),
17+
classifiers=[
18+
"Programming Language :: Python :: Implementation :: MicroPython",
19+
"License :: OSI Approved :: MIT License",
20+
],
21+
)

0 commit comments

Comments
 (0)