File size: 602 Bytes
618fdc2
 
 
 
ec0918d
618fdc2
 
 
 
 
 
 
 
ec0918d
618fdc2
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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',
)