Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit e2060a3

Browse files
authored
Merge pull request #16 from justanr/1.4.1-Fix-Release
Fix install issue with non-included files Closes #15
2 parents 9c18dfd + 66c55c7 commit e2060a3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include LICENSE README.md CHANGELOG

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
if __name__ == '__main__':
2020
setup(
2121
name='marshmallow-enum',
22-
version='1.4',
22+
version='1.4.1',
2323
author='Alec Nikolas Reiter',
2424
author_email='[email protected]',
2525
description='Enum field for Marshmallow',
2626
long_description=readme + '\n\n' + changelog,
27-
package_data={'': ['LICENSE']},
27+
package_data={'': ['LICENSE', 'README.md', 'CHANGELOG']},
2828
include_package_data=True,
2929
license='MIT',
3030
packages=['marshmallow_enum'],

0 commit comments

Comments
 (0)