-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 917 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 917 Bytes
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
import setuptools
REQUIRED_PKGS = [
"numpy>=1.21.1",
"allennlp>=2.8.0",
"transformers>=4.15.0",
"datasets>=1.14.0",
"eaas>=0.1.9",
"tqdm>=4.62.3"
]
setuptools.setup(
name="omneval",
version="0.0.1",
author="Ziyun Xu(vincent1rookie)",
author_email="vincentinfdu@hotmail.com",
description="A zero-shot evaluation benchmark to assess innate ability of PLMs",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/ExpressAI/omneval",
packages=setuptools.find_packages(),
install_requires=REQUIRED_PKGS,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'omneval = main:main'
]}
)