-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
21 lines (19 loc) · 962 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from open_intent_classifier import VERSION
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="open_intent_classifier",
version=VERSION,
packages=["open_intent_classifier"],
author="Serj Smorodinsky",
url="https://github.com/SerjSmor/open-intent-classifier",
author_email="[email protected]",
description="This library has two purposes: 1. allow to easily test semantic classification with open labels (not pre defined) for intent recognition. "
"2. allow to experiment with different n-shot classification components.",
install_requires=["transformers", "torch", "sentencepiece", "scikit-learn", "sentence-transformers", "pandas",
"python-dotenv", "openai", "dspy", "accelerate"],
long_description=long_description,
long_description_content_type='text/markdown'
)