diff --git a/package/setup.py b/package/setup.py index b4d6cdb..30df035 100644 --- a/package/setup.py +++ b/package/setup.py @@ -7,7 +7,7 @@ app_version = "#APP_VERSION#" build_number = "#BUILD_NUMBER#" -module_version = "0.2.0" +module_version = "0.2.1" name = f"{app_name.lower()}-stubs" diff --git a/setup.py b/setup.py index a47df52..4fddbfc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="bpystubgen", - version="0.2.0", + version="0.2.1", author="Xavier Cho", author_email="mysticfallband@gmail.com", description="A utility to generate Python API stubs from documentation files in reStructuredText format.", @@ -13,7 +13,7 @@ long_description_content_type="text/markdown", url="https://github.com/mysticfall/bpystubgen", packages=["bpystubgen"], - package_data={"bpystubgen": ["patches/*.txt", "patches/*.rst"]}, + package_data={"bpystubgen": ["patches/*.txt", "patches/*.rst", "patches/__init__.py"]}, install_requires=["docutils==0.17.1", "sphinxcontrib-restbuilder==0.3"], classifiers=[ "Programming Language :: Python :: 3",