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 #!/usr/bin/env python
from __future__ import print_function from __future__ import print_function
import os import os
import shutil
import subprocess import subprocess
import sys import sys
import contextlib import contextlib
@ -26,13 +25,15 @@ PACKAGES = [
'spacy.tests.morphology', 'spacy.tests.morphology',
'spacy.tests.munge', 'spacy.tests.munge',
'spacy.tests.parser', 'spacy.tests.parser',
'spacy.tests.print',
'spacy.tests.serialize', 'spacy.tests.serialize',
'spacy.tests.spans', 'spacy.tests.spans',
'spacy.tests.tagger', 'spacy.tests.tagger',
'spacy.tests.tokenizer', 'spacy.tests.tokenizer',
'spacy.tests.tokens', 'spacy.tests.tokens',
'spacy.tests.vectors', 'spacy.tests.vectors',
'spacy.tests.vocab'] 'spacy.tests.vocab',
'spacy.tests.website']
MOD_NAMES = [ MOD_NAMES = [
@ -144,7 +145,7 @@ def setup_package():
return clean(root) return clean(root)
with chdir(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 = {} about = {}
exec(f.read(), about) exec(f.read(), about)
@ -198,6 +199,7 @@ def setup_package():
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X', 'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Programming Language :: Cython',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',

View File

@ -10,5 +10,4 @@ __uri__ = 'https://spacy.io'
__author__ = 'Matthew Honnibal' __author__ = 'Matthew Honnibal'
__email__ = 'matt@spacy.io' __email__ = 'matt@spacy.io'
__license__ = 'MIT' __license__ = 'MIT'
__release__ = True
__default_model__ = 'en>=1.0.0,<1.1.0' __default_model__ = 'en>=1.0.0,<1.1.0'