-
Notifications
You must be signed in to change notification settings - Fork 454
/
setup.py
75 lines (66 loc) · 2.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
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
74
import setuptools
import os
import importlib
requires = """
transformers>=4.10.0
sentencepiece==0.1.96
# scikit-learn>=0.24.2
tqdm>=4.62.2
tensorboardX
nltk
yacs
dill
datasets
rouge==1.0.0
pyarrow
scipy
"""
def get_requirements():
ret = [x for x in requires.split("\n") if len(x)>0]
print("requirements:", ret)
return ret
# path = os.path.dirname(os.path.abspath(__file__))
# requires = get_requirements(path)
# print("requirements:")
# print(requires)
with open('README.md', 'r') as f:
setuptools.setup(
name = 'openprompt',
version = '1.0.1',
description = "An open source framework for prompt-learning.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author = 'Ning Ding, Shengding Hu, Weilin Zhao, Yulin Chen',
author_email = '[email protected]',
license="Apache",
url="https://github.com/thunlp/OpenPrompt",
keywords = ['PLM', 'prompt', 'AI', 'NLP'],
python_requires=">=3.6.0",
install_requires=get_requirements(),
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)
required_list = ["torch"]
for package in required_list:
try:
m = importlib.import_module(package)
except ModuleNotFoundError:
print("\n"+"="*30+" WARNING "+"="*30)
print(f"{package} is not found on your environment, please install it manually.")
print("We do not install it for you because the environment sometimes needs special care.")
optional_list = ["sklearn"]
for package in optional_list:
try:
m = importlib.import_module(package)
except ModuleNotFoundError:
print("\n"+"="*30+" WARNING "+"="*30)
print(f"{package} is not found on your environment, please install it if the specific script needs.")