mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
cleanup
This commit is contained in:
parent
8ef5b6e126
commit
54f3447b5f
8
setup.py
8
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',
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue
Block a user