Skip to content

Commit

Permalink
Merge pull request #29 from AdCombo/fix-include-package_data
Browse files Browse the repository at this point in the history
Fix include package data
  • Loading branch information
mahenzon authored Jan 6, 2021
2 parents 93d9843 + 3d9cbd7 commit d3dc2a3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Changelog
*********


**1.0.5**
=========

Bug Fixes
=========

* Distribute apispec templates #- `@mahenzon`_


**1.0.3**
=========

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = "1.0.4"
__version__ = "1.0.5"


requirements_filepath = os.path.join(os.path.dirname(__name__), "requirements.txt")
Expand All @@ -25,11 +25,14 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
],
keywords="web api rest rpc swagger jsonapi flask sqlalchemy marshmallow plugin",
packages=find_packages(exclude=["tests"]),
package_data={"": ["apispec/templates/*.html"]},
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=install_requires,
Expand Down

0 comments on commit d3dc2a3

Please sign in to comment.