Skip to content

Commit 4ae77aa

Browse files
committed
Ensure readme and changelog are bundled into wheel
1 parent 39cd6e2 commit 4ae77aa

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
include README.md
2-
include LICENSE
3-
include CHANGELOG.md
1+
include README.md LICENSE CHANGELOG.md

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
exec(f.read(), about)
1111

1212
# Import the README and use it as the long-description.
13-
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
13+
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
1414
long_description = '\n' + f.read()
1515

1616
setup(
@@ -24,6 +24,7 @@
2424
url='https://github.com/amadeus4dev/amadeus-python',
2525
install_requires=[],
2626
packages=find_packages(),
27+
data_files=[('docs', ['README.md', 'CHANGELOG.md'])],
2728
include_package_data=True,
2829
license='MIT',
2930
classifiers=[

0 commit comments

Comments
 (0)