We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14eb6dc commit 9adec7aCopy full SHA for 9adec7a
pyproject.toml
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
6
[project]
7
name = "table2ascii"
8
-version = "1.1.0"
+version = "1.1.1"
9
authors = [{name = "Jonah Lawrence", email = "[email protected]"}]
10
description = "Convert 2D Python lists into Unicode/ASCII tables"
11
readme = "README.md"
setup.py
@@ -1,4 +1,7 @@
1
# /usr/bin/env python
2
from setuptools import setup
3
4
-setup()
+setup(
+ packages=["table2ascii"],
+ package_data={"table2ascii": ["py.typed"]},
+)
0 commit comments