| from setuptools import setup, find_packages |
|
|
| setup( |
| name="prival", |
| version="0.1.5", |
| author="Peng Xiang", |
| author_email="eugene.p.xiang@gmail.com", |
| description="Prompt Input Validation toolkit", |
| long_description=open("README.md", encoding="utf-8").read(), |
| long_description_content_type="text/markdown", |
| url="https://huggingface.co/EugeneXiang/prival", |
| license="MIT", |
| packages=find_packages(include=["prival", "prival.*"]), |
| include_package_data=True, |
| install_requires=[ |
| "pyyaml", |
| "language-tool-python", |
| "sentence-transformers", |
| ], |
| extras_require={ |
| "full": [ |
| "spacy", |
| ], |
| }, |
| classifiers=[ |
| "Programming Language :: Python :: 3", |
| "License :: OSI Approved :: MIT License", |
| "Operating System :: OS Independent", |
| ], |
| python_requires=">=3.7", |
| ) |
|
|