We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcd0008 commit 8f46032Copy full SHA for 8f46032
3 files changed
bugout/__init__.py
@@ -7,7 +7,7 @@
7
8
__email__ = "engineering@bugout.dev"
9
__license__ = "MIT"
10
-__version__ = "0.0.5"
+__version__ = "0.0.6"
11
12
__all__ = (
13
"__author__",
bugout/py.typed
setup.py
@@ -47,6 +47,8 @@ def load_requirements(fname: str) -> list:
47
],
48
python_requires=">=3.8",
49
packages=find_packages(),
50
+ package_data={"bugout": ["py.typed"]},
51
+ zip_safe=False,
52
install_requires=load_requirements("requirements.txt"),
53
extras_require={"dev": load_requirements("requirements.dev.txt")},
54
entry_points={"console_scripts": ["{0} = {0}.__main__:main".format(MODULE_NAME)]},
0 commit comments