From be77759e8e1ac47dd0583b94d5055f1cb41200bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Mon, 23 Apr 2018 13:14:15 +0200 Subject: [PATCH] Adjusting setup.py --- MANIFEST.in | 8 ++++---- setup.py | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3bef2ce..dd0806e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ include LICENSE README.md recursive-include ecrterm * prune ecrterm/tests -#recursive-exclude ecrterm __pycache__ -#recursive-exclude ecrterm *.pyc -#recursive-exclude ecrterm *.pyo -#recursive-exclude ecrterm *.orig +recursive-exclude * __pycache__ +recursive-exclude * *.pyc +recursive-exclude * *.pyo +recursive-exclude * *.orig diff --git a/setup.py b/setup.py index 7cba84a..8030550 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ setup( packages=find_packages(exclude=['ecrterm.tests']), license='LGPL-3', install_requires=['pyserial'], + include_package_data=True, classifiers=[ 'License :: OSI Approved :: GNU Lesser General Public License v3 or ' 'later (LGPLv3+)',