-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #245 from danielkingai2/v0.2.5
v0.2.5 upgrade (spacy 2.3.0)
- Loading branch information
Showing
11 changed files
with
57 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
numpy | ||
spacy>=2.2.1 | ||
spacy>=2.3.0,<3.0.0 | ||
spacy-lookups-data | ||
pandas | ||
requests>=2.0.0,<3.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
_MAJOR = "0" | ||
_MINOR = "2" | ||
_REVISION = "4-unreleased" | ||
_REVISION = "5-unreleased" | ||
|
||
VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) | ||
VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/user/bin/env bash | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,41 +21,34 @@ | |
exec(version_file.read(), VERSION) | ||
|
||
setup( | ||
name = 'scispacy', | ||
version = VERSION["VERSION"], | ||
url = 'https://allenai.github.io/SciSpaCy/', | ||
author = 'Allen Institute for Artificial Intelligence', | ||
author_email = '[email protected]', | ||
description = 'A full SpaCy pipeline and models for scientific/biomedical documents.', | ||
name="scispacy", | ||
version=VERSION["VERSION"], | ||
url="https://allenai.github.io/SciSpaCy/", | ||
author="Allen Institute for Artificial Intelligence", | ||
author_email="[email protected]", | ||
description="A full SpaCy pipeline and models for scientific/biomedical documents.", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
keywords = ["bioinformatics nlp spacy SpaCy biomedical"], | ||
keywords=["bioinformatics nlp spacy SpaCy biomedical"], | ||
classifiers=[ | ||
'Intended Audience :: Science/Research', | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics', | ||
"Intended Audience :: Science/Research", | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
], | ||
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), | ||
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), | ||
license="Apache", | ||
install_requires=[ | ||
"spacy>=2.2.1", | ||
"requests>=2.0.0,<3.0.0" | ||
"conllu", | ||
"spacy>=2.3.0,<3.0.0", | ||
"requests>=2.0.0,<3.0.0" "conllu", | ||
"numpy", | ||
"joblib", | ||
"nmslib>=1.7.3.6", | ||
"scikit-learn>=0.20.3", | ||
"pysbd" | ||
], | ||
tests_require=[ | ||
"pytest", | ||
"pytest-cov", | ||
"flake8", | ||
"black", | ||
"mypy" | ||
], | ||
python_requires='>=3.6.0', | ||
"pysbd", | ||
], | ||
tests_require=["pytest", "pytest-cov", "flake8", "black", "mypy"], | ||
python_requires=">=3.6.0", | ||
) |