Spaces:
Sleeping
Sleeping
File size: 1,425 Bytes
6ed21b9 |
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 33 34 35 36 37 38 39 40 41 42 43 |
import setuptools
import sys
setuptools.setup(
name="benepar",
version="0.2.0",
author="Nikita Kitaev",
author_email="[email protected]",
description="Berkeley Neural Parser",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/nikitakit/self-attentive-parser",
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
python_requires=">=3.6",
classifiers=(
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
),
install_requires=[
"nltk>=3.2",
"spacy>=2.0.9",
"torch>=1.6.0",
"torch-struct>=0.5",
"tokenizers>=0.9.4",
"transformers[torch,tokenizers]>=4.2.2",
"protobuf",
"sentencepiece>=0.1.91",
"dataclasses;python_version<'3.7'",
],
)
|