From 7194948066fb09ef6e0e68007df0e4d37c148a60 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Sat, 11 Jan 2020 13:23:55 +0900 Subject: [PATCH] Modify setup.py --- MANIFEST.in | 6 ++---- setup.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 00700f4..6a25526 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,4 @@ include requirements.txt include requirements_test.txt -prune testrun*.py -prune log.txt -prune quote.txt -prune .gitignore \ No newline at end of file +global-exclude tests/* +global-exclude pytchat/testrun*.py \ No newline at end of file diff --git a/setup.py b/setup.py index 84683f3..459d6e0 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ with open('README.md', encoding='utf-8') as f: setup( name=package_name, - packages=find_packages(), + packages=find_packages(exclude=['*log.txt','*tests']), version=version, url=url, author=author,