Skip to content

Commit b6ca2ee

Browse files
authored
Merge pull request #108 from python-hyper/export_types
Export type information per PEP 561
2 parents 7364c5f + 31156b8 commit b6ca2ee

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
url=__url__,
2727
packages=find_packages(where="src"),
2828
package_dir={"": "src"},
29-
include_package_data=True,
29+
package_data=dict(
30+
hyperlink=[
31+
"py.typed",
32+
],
33+
),
3034
zip_safe=False,
3135
license=__license__,
3236
platforms='any',

src/hyperlink/py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# See: https://www.python.org/dev/peps/pep-0561/

0 commit comments

Comments
 (0)