-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 740 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="micropython-ahtx0",
version="0.1.2",
author="Andreas Bühl",
author_email="code@abuehl.de",
description="MicroPython driver for the AHT10 and AHT20 temperature and humidity sensors.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="aht10, aht20, micropython, temperature, humidity, sensor, i2c",
url="https://github.com/targetblank/micropython_ahtx0",
py_modules=["ahtx0"],
classifiers=[
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: OSI Approved :: MIT License",
],
)