From 09e0b15629a7dd98c45a24e045dcaf518b184782 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 26 Oct 2015 00:30:33 +1100 Subject: [PATCH] * Package tests, for distriution in PyPi --- setup.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb8454171..87cbbc141 100644 --- a/setup.py +++ b/setup.py @@ -147,7 +147,19 @@ def run_setup(exts): setup( name='spacy', packages=['spacy', 'spacy.tokens', 'spacy.en', 'spacy.serialize', - 'spacy.syntax', 'spacy.munge'], + 'spacy.syntax', 'spacy.munge', + 'spacy.tests', + 'spacy.tests.matcher', + 'spacy.tests.morphology', + 'spacy.tests.munge', + 'spacy.tests.parser', + 'spacy.tests.serialize', + 'spacy.tests.spans', + 'spacy.tests.tagger', + 'spacy.tests.tokenizer', + 'spacy.tests.tokens', + 'spacy.tests.vectors', + 'spacy.tests.vocab'], description="Industrial-strength NLP", author='Matthew Honnibal', author_email='honnibal@gmail.com',