-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.25 KB
/
setup.py
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
44
45
46
47
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="guardbench",
version="1.0.0",
author="Elias Bassani",
author_email="[email protected]",
description="GuardBench: A Large-Scale Benchmark for Guardrail Models",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
install_requires=[
"datasets",
"huggingface_hub",
"imbalanced-learn",
"ipython",
"loguru",
"scikit-learn",
"tabulate",
"tqdm",
"unified_io",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Text Processing :: General",
],
keywords=[
"harmful content detection",
"harmful content",
"toxic content detection",
"toxic content",
"guardrails",
"guardrail models",
"guardrail models evaluation",
"guardrail models benchmark",
"evaluation",
"benchmark",
],
python_requires=">=3.10",
)