Skip to content

Commit 17ada41

Browse files
committed
Added PEP-561 tag file. Updated to use git tags for wheel versions
1 parent 1ae9c0a commit 17ada41

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# PEP 561

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.1.5'
98
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
109
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
1110
It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy
@@ -43,9 +42,13 @@
4342
]
4443
}
4544

45+
PACKAGE_DATA = {
46+
'': ['py.typed']
47+
}
48+
4649
setup(
4750
name="tableformatter",
48-
version=VERSION,
51+
use_scm_version=True,
4952
description=DESCRIPTION,
5053
long_description=LONG_DESCRIPTION,
5154
classifiers=CLASSIFIERS,
@@ -59,4 +62,5 @@
5962
python_requires='>=3.4',
6063
install_requires=INSTALL_REQUIRES,
6164
extras_require=EXTRAS_REQUIRE,
65+
package_data=PACKAGE_DATA,
6266
)

0 commit comments

Comments
 (0)