-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (70 loc) · 2.32 KB
/
setup.py
File metadata and controls
73 lines (70 loc) · 2.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("bioeval/version.py", "r", encoding="utf-8") as fh:
version_ns = {}
exec(fh.read(), version_ns)
setup(
name="bioeval",
version=version_ns["__version__"],
description="Multi-dimensional Evaluation of LLMs for Biological Research",
long_description=long_description,
long_description_content_type="text/markdown",
author="JangKeun Kim",
author_email="jang1563@gmail.com",
license="MIT (code); CC-BY-NC-4.0 (benchmark data)",
url="https://github.com/jang1563/BioEval",
project_urls={
"Bug Tracker": "https://github.com/jang1563/BioEval/issues",
"Documentation": "https://github.com/jang1563/BioEval#readme",
"Source Code": "https://github.com/jang1563/BioEval",
},
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"anthropic>=0.18.0",
"openai>=1.0.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"scikit-learn>=1.3.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"tqdm>=4.65.0",
"pyyaml>=6.0",
"requests>=2.28.0",
"aiohttp>=3.9.0",
],
extras_require={
"notebooks": [
"jupyter>=1.0.0",
],
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black==25.11.0",
"ruff>=0.8.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
],
keywords="llm, evaluation, biology, bioinformatics, nlp, machine-learning, benchmark",
entry_points={
"console_scripts": [
"bioeval=bioeval.cli:main",
],
},
)