Skip to content

Commit 9adec7a

Browse files
authored
fix: Include py.typed in package data for mypy (#100)
1 parent 14eb6dc commit 9adec7a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "table2ascii"
8-
version = "1.1.0"
8+
version = "1.1.1"
99
authors = [{name = "Jonah Lawrence", email = "[email protected]"}]
1010
description = "Convert 2D Python lists into Unicode/ASCII tables"
1111
readme = "README.md"

Diff for: setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# /usr/bin/env python
22
from setuptools import setup
33

4-
setup()
4+
setup(
5+
packages=["table2ascii"],
6+
package_data={"table2ascii": ["py.typed"]},
7+
)

0 commit comments

Comments
 (0)