From e36a96692e571f5728c040ea8949779c8cfeafb7 Mon Sep 17 00:00:00 2001 From: stephenhky Date: Sat, 10 Feb 2018 16:42:18 -0500 Subject: [PATCH] converted test to a package by adding __init__.py --- setup.py | 2 +- test/__init__.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 test/__init__.py diff --git a/setup.py b/setup.py index 52123c9..a5a485f 100644 --- a/setup.py +++ b/setup.py @@ -24,5 +24,5 @@ def readme(): ], tests_require=['unittest2', 'numpy',], test_suite="test", - include_package_data=True, + # include_package_data=True, zip_safe=False) diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..828a689 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1,3 @@ +""" +This package has automated unit-tests for shorttext. +"""