Skip to content

Commit d3dc2a3

Browse files
authored
Merge pull request #29 from AdCombo/fix-include-package_data
Fix include package data
2 parents 93d9843 + 3d9cbd7 commit d3dc2a3

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ Changelog
22
*********
33

44

5+
**1.0.5**
6+
=========
7+
8+
Bug Fixes
9+
=========
10+
11+
* Distribute apispec templates #- `@mahenzon`_
12+
13+
514
**1.0.3**
615
=========
716

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
__version__ = "1.0.4"
5+
__version__ = "1.0.5"
66

77

88
requirements_filepath = os.path.join(os.path.dirname(__name__), "requirements.txt")
@@ -25,11 +25,14 @@
2525
"Programming Language :: Python :: 3.6",
2626
"Programming Language :: Python :: 3.7",
2727
"Programming Language :: Python :: 3.8",
28+
"Programming Language :: Python :: 3.9",
2829
"License :: OSI Approved :: MIT License",
2930
"Topic :: Internet",
3031
],
3132
keywords="web api rest rpc swagger jsonapi flask sqlalchemy marshmallow plugin",
3233
packages=find_packages(exclude=["tests"]),
34+
package_data={"": ["apispec/templates/*.html"]},
35+
include_package_data=True,
3336
zip_safe=False,
3437
platforms="any",
3538
install_requires=install_requires,

0 commit comments

Comments
 (0)