mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
cleanup
This commit is contained in:
parent
9f628688ce
commit
1fe29c6919
|
@ -1,3 +1,4 @@
|
|||
recursive-include include *.h
|
||||
include buildbot.json
|
||||
include LICENSE
|
||||
include README.rst
|
||||
|
|
|
@ -28,7 +28,7 @@ Features
|
|||
* No pre-processing required. spaCy takes raw text as input, warts and newlines and all.
|
||||
|
||||
Top Peformance
|
||||
-------------
|
||||
--------------
|
||||
|
||||
* Fastest in the world: <50ms per document. No faster system has ever been
|
||||
announced.
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
cython
|
||||
cymem>=1.30,<1.32
|
||||
pathlib
|
||||
numpy
|
||||
cymem>=1.30,<1.32
|
||||
preshed>=0.46.1,<0.47.0
|
||||
thinc>=5.0.0,<5.1.0
|
||||
murmurhash>=0.26,<0.27
|
||||
numpy
|
||||
plac
|
||||
six
|
||||
ujson
|
||||
|
|
20
setup.py
20
setup.py
|
@ -144,10 +144,13 @@ def setup_package():
|
|||
return clean(root)
|
||||
|
||||
with chdir(root):
|
||||
about = {}
|
||||
with open(os.path.join(root, "spacy", "about.py")) as f:
|
||||
about = {}
|
||||
exec(f.read(), about)
|
||||
|
||||
with open(os.path.join(root, 'README.rst')) as f:
|
||||
readme = f.read()
|
||||
|
||||
include_dirs = [
|
||||
get_python_inc(plat_specific=True),
|
||||
os.path.join(root, 'include')]
|
||||
|
@ -168,15 +171,24 @@ def setup_package():
|
|||
packages=PACKAGES,
|
||||
package_data={'': ['*.pyx', '*.pxd', '*.txt', '*.tokens']},
|
||||
description=about['__summary__'],
|
||||
long_description=readme,
|
||||
author=about['__author__'],
|
||||
author_email=about['__email__'],
|
||||
version=about['__version__'],
|
||||
url=about['__uri__'],
|
||||
license=about['__license__'],
|
||||
ext_modules=ext_modules,
|
||||
install_requires=['numpy', 'murmurhash>=0.26,<0.27', 'cymem>=1.30,<1.32.0', 'preshed>=0.46.1,<0.47',
|
||||
'thinc>=5.0.0,<5.1.0', 'plac', 'six',
|
||||
'ujson', 'cloudpickle', 'sputnik>=0.9.2,<0.10.0'],
|
||||
install_requires=[
|
||||
'numpy',
|
||||
'murmurhash>=0.26,<0.27',
|
||||
'cymem>=1.30,<1.32.0',
|
||||
'preshed>=0.46.1,<0.47',
|
||||
'thinc>=5.0.0,<5.1.0',
|
||||
'plac',
|
||||
'six',
|
||||
'ujson',
|
||||
'cloudpickle',
|
||||
'sputnik>=0.9.2,<0.10.0'],
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
|
|
Loading…
Reference in New Issue
Block a user