diff options
| author | Eric Lin <anselor@gmail.com> | 2021-01-11 14:06:16 -0500 |
|---|---|---|
| committer | anselor <anselor@gmail.com> | 2021-01-23 00:35:00 -0500 |
| commit | 5f1ea98c1513225c7bf87976ca438410afff2268 (patch) | |
| tree | 59b89f886a42547cb909a26984231e88e8959df1 /setup.py | |
| parent | a3b1b6ddf81cdc0b253f15feeb167ff348afd14f (diff) | |
| download | cmd2-git-5f1ea98c1513225c7bf87976ca438410afff2268.tar.gz | |
Added py.typed to signal that we support type annotations for PEP-561. Fixes #1036
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -70,6 +70,10 @@ EXTRAS_REQUIRE = { ] } +PACKAGE_DATA = { + 'cmd2': ['py.typed'], +} + setup( name="cmd2", use_scm_version={ @@ -84,6 +88,7 @@ setup( url='https://github.com/python-cmd2/cmd2', license='MIT', platforms=['any'], + package_data=PACKAGE_DATA, packages=['cmd2'], keywords='command prompt console cmd', python_requires='>=3.5', |
