Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 897 Bytes
63858e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
from setuptools import setup, find_packages
requires = [
'transformers>=2.3.0',
'h5py>=2.10.0',
'numpy>=1.17.4',
'regex>=2020.1.8',
'spacy>=2.2.3',
'torch',
]
setup(
name="spacyface",
description="Aligner for spacy and huggingface tokenization",
packages=['spacyface'],
version='0.2.1',
license='Apache 2.0',
author="Ben Hoover",
author_email="[email protected]",
url="https://github.com/bhoov/spacyface",
keywords=["transformer", "pytorch", "spacy", "tokenize", "tokenization", "NLP", "Natural Language Processing",
"huggingface", "linguistic"],
include_package_data=True,
install_requires=requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.6, <3.8'
)
|