wilhelm-vocabulary / setup.py
QubitPi's picture
Change link field name from 'label' to 'link' (#92)
ec0918d unverified
raw
history blame
602 Bytes
from setuptools import find_packages
from setuptools import setup
setup(
name="wilhelm_vocabulary",
version="0.0.1",
description="A vocabulary processor specifically designed for QubitPi",
url="https://github.com/QubitPi/wilhelm-vocabulary",
author="Jiaqi Liu",
author_email="jack20220723@gmail.com",
license="Apache-2.0",
packages=find_packages(),
python_requires='>=3.10',
install_requires=["pyyaml", "nltk", "wilhelm_data_loader"],
zip_safe=False,
include_package_data=True,
setup_requires=["setuptools-pep8", "isort"],
test_suite='tests',
)