Skip to content

Commit

Permalink
Feature/py.typed (#9)
Browse files Browse the repository at this point in the history
* exclude pyc from package
* add py.typed to package
  • Loading branch information
kwarunek committed Aug 26, 2019
1 parent bc71f36 commit 9cb1d3a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -1,2 +1,6 @@
include README.rst
include LICENSE
include aiounittest/py.typed

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
Empty file added aiounittest/py.typed
Empty file.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.2.1'
version = u'1.3.0'
# The full version, including alpha/beta/rc tags.
release = u'1.2.1'
release = u'1.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
setup(
name='aiounittest',
packages=['aiounittest'],
version='1.2.1',
version='1.3.0',
author='Krzysztof Warunek',
author_email='krzysztof@warunek.net',
description='Test asyncio code more easily.',
Expand All @@ -17,6 +17,7 @@
url='https://github.com/kwarunek/aiounittest',
long_description=open('README.rst').read(),
tests_require=['nose', 'coverage'],
package_data={'aiounittest': ['py.typed']},
license="MIT",
classifiers=[
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 9cb1d3a

Please sign in to comment.