Skip to content

Commit

Permalink
Added package data argument to setup()
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlockyer committed Aug 30, 2020
1 parent 9af47e3 commit 9a1b4bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
)
package_data = {"PrintTags": ["py.typed"]},
package_data = {'PrintTags': ['py.typed']}
packages = find_packages()
zip_safe = False

setup(name=name, description=description, long_description=long_description,
version=version, url=url, author=author, author_email=author_email,
license=license, classifiers=classifiers, packages=packages, zip_safe=zip_safe)
license=license, classifiers=classifiers, package_data=package_data,
packages=packages, zip_safe=zip_safe)

0 comments on commit 9a1b4bb

Please sign in to comment.