-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.36 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.36 KB
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
from setuptools import setup, find_packages
import os
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="YESciEval",
version=open(os.path.join(os.path.dirname(__file__), 'yescieval/VERSION')).read().strip(),
author="Hamed Babaei Giglou",
author_email="hamedbabaeigiglou@gmail.com",
description="YESciEval: Robust LLM-as-a-Judge for Scientific Question Answering.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sciknoworg/YESciEval",
packages=find_packages(),
install_requires=[
"pre-commit",
"transformers,"
"torch",
"peft",
"openai",
"pandas",
"numpy",
"pydantic",
"pytest"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10,<4.0.0",
project_urls={
"Documentation": "https://yescieval.readthedocs.io/",
"Source": "https://github.com/sciknoworg/YESciEval",
"Tracker": "https://github.com/sciknoworg/YESciEval/issues",
},
)