-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 903 Bytes
/
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
import os
from setuptools import find_packages, setup
current_directory = os.path.abspath(os.path.dirname(__file__))
print(current_directory)
requirements_path = os.path.join(current_directory, "requirements.txt")
with open(requirements_path, "r") as file:
requirements = file.read().splitlines()
setup(
name="liah",
version="0.1.7",
author="James Melvin Priyarajan",
author_email="[email protected]",
description="Insert a Lie in a Haystack and evaluate the model's ability to detect it.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/melvinebenezer/Liah-Lie_in_a_haystack",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
keywords=["llm", "needle in a haystack"],
python_requires=">=3.6",
classifiers=[],
license="MIT",
)