From 54f3447b5f4dfb077fd3456b0a70900d866f1e52 Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Mon, 14 Mar 2016 01:46:33 +0100 Subject: [PATCH] cleanup --- setup.py | 8 +++++--- spacy/about.py | 1 - 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 7244a0b98..f2d4c3fb9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python from __future__ import print_function import os -import shutil import subprocess import sys import contextlib @@ -26,13 +25,15 @@ PACKAGES = [ 'spacy.tests.morphology', 'spacy.tests.munge', 'spacy.tests.parser', + 'spacy.tests.print', 'spacy.tests.serialize', 'spacy.tests.spans', 'spacy.tests.tagger', 'spacy.tests.tokenizer', 'spacy.tests.tokens', 'spacy.tests.vectors', - 'spacy.tests.vocab'] + 'spacy.tests.vocab', + 'spacy.tests.website'] MOD_NAMES = [ @@ -144,7 +145,7 @@ def setup_package(): return clean(root) with chdir(root): - with open(os.path.join(root, "spacy", "about.py")) as f: + with open(os.path.join(root, 'spacy', 'about.py')) as f: about = {} exec(f.read(), about) @@ -198,6 +199,7 @@ def setup_package(): 'Operating System :: POSIX :: Linux', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', + 'Programming Language :: Cython', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', diff --git a/spacy/about.py b/spacy/about.py index 2ca380cde..3814b8d61 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -10,5 +10,4 @@ __uri__ = 'https://spacy.io' __author__ = 'Matthew Honnibal' __email__ = 'matt@spacy.io' __license__ = 'MIT' -__release__ = True __default_model__ = 'en>=1.0.0,<1.1.0'