This commit is contained in:
Henning Peters 2016-03-14 01:46:33 +01:00
parent 8ef5b6e126
commit 54f3447b5f
2 changed files with 5 additions and 4 deletions

View File

@ -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',

View File

@ -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'