aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Basche <andre.basche@gmail.com>2023-07-24 01:47:02 +0200
committerAndre Basche <andre.basche@gmail.com>2023-07-24 01:47:45 +0200
commite4dc3cb1d0446cbe4d1ece699ef1e90ffd27584d (patch)
tree8e36531dea3ec779959cf65d291ea2920bfdfbcc
parent2523069ce994b9885ac2882da803f6c25cb58202 (diff)
Next try to add py.typed in packagev0.15.4
-rw-r--r--MANIFEST.in1
-rw-r--r--setup.py3
2 files changed, 2 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..035f5c7
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
include pyhon/py.typed
diff --git a/setup.py b/setup.py
index a17bc25..2735f63 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f:
7 7
8setup( 8setup(
9 name="pyhOn", 9 name="pyhOn",
10 version="0.15.3", 10 version="0.15.5",
11 author="Andre Basche", 11 author="Andre Basche",
12 description="Control hOn devices with python", 12 description="Control hOn devices with python",
13 long_description=long_description, 13 long_description=long_description,
@@ -20,7 +20,6 @@ setup(
20 platforms="any", 20 platforms="any",
21 packages=find_packages(), 21 packages=find_packages(),
22 include_package_data=True, 22 include_package_data=True,
23 package_data={"pyhon": ["py.typed"]},
24 python_requires=">=3.10", 23 python_requires=">=3.10",
25 install_requires=["aiohttp==3.8.5", "typing-extensions==4.7.1"], 24 install_requires=["aiohttp==3.8.5", "typing-extensions==4.7.1"],
26 classifiers=[ 25 classifiers=[