Skip to content

Commit

Permalink
add pytyped to package data
Browse files Browse the repository at this point in the history
  • Loading branch information
zweckj committed Nov 2, 2023
1 parent bb68eb6 commit c66745d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyacaia_async/acaiascale.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import asyncio
import logging
import time
from typing import Awaitable, Callable
from collections.abc import Awaitable, Callable

from bleak import BleakClient, BleakGATTCharacteristic, BLEDevice
from bleak.exc import BleakDeviceNotFoundError, BleakError
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pyacaia_async",
version="0.0.9",
version="0.0.10",
description="An async implementation of PyAcaia",
long_description=readme,
long_description_content_type="text/markdown",
Expand All @@ -25,6 +25,6 @@
packages=setuptools.find_packages(),
install_requires=["bleak>=0.20.2"],
package_data={
"license": ["LICENSE"],
"pyacaia_async": ["py.typed"],
},
)

0 comments on commit c66745d

Please sign in to comment.