Skip to content

Commit

Permalink
Properly include typing information in distributions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kentzo committed Oct 3, 2022
1 parent 36bef7b commit bf8f2ee
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
=======

1.23.1 (2022-10-02)
-------------------

- Include typing information in PyPI and source distributions.

1.23.0 (2021-01-29)
-------------------

Expand Down
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include *.rst
include *.rst
include *.typed
include *.pyi
2 changes: 1 addition & 1 deletion git_archive_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import sys
import re

__version__ = "1.23.0"
__version__ = "1.23.1"


try:
Expand Down
Empty file added py.typed
Empty file.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def run_tests(self):
setup(
version=verstr,
py_modules=['git_archive_all'],
package_data={'git_archive_all': ['py.typed', '*.pyi']},
entry_points={'console_scripts': 'git-archive-all=git_archive_all:main'},
cmdclass={"test": PyTest},
)

0 comments on commit bf8f2ee

Please sign in to comment.