Delete nlp4web-codebase-main/setup.py
Browse files
nlp4web-codebase-main/setup.py
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
from setuptools import setup, find_packages
|
2 |
-
|
3 |
-
|
4 |
-
with open("README.md", "r", encoding="utf-8") as fh:
|
5 |
-
readme = fh.read()
|
6 |
-
|
7 |
-
setup(
|
8 |
-
name="nlp4web-codebase",
|
9 |
-
version="0.0.0",
|
10 |
-
author="Kexin Wang",
|
11 |
-
author_email="kexin.wang.2049@gmail.com",
|
12 |
-
description="Codebase of teaching materials for NLP4Web.",
|
13 |
-
long_description=readme,
|
14 |
-
long_description_content_type="text/markdown",
|
15 |
-
url="https://https://github.com/kwang2049/nlp4web-codebase",
|
16 |
-
project_urls={
|
17 |
-
"Bug Tracker": "https://github.com/kwang2049/nlp4web-codebase/issues",
|
18 |
-
},
|
19 |
-
packages=find_packages(),
|
20 |
-
classifiers=[
|
21 |
-
"Programming Language :: Python :: 3",
|
22 |
-
"License :: OSI Approved :: Apache Software License",
|
23 |
-
"Operating System :: OS Independent",
|
24 |
-
],
|
25 |
-
python_requires=">=3.10",
|
26 |
-
install_requires=[
|
27 |
-
"nltk==3.8.1",
|
28 |
-
"numpy==1.26.4",
|
29 |
-
"scipy==1.13.1",
|
30 |
-
"pandas==2.2.2",
|
31 |
-
"tqdm==4.66.5",
|
32 |
-
"ujson==5.10.0",
|
33 |
-
"joblib==1.4.2",
|
34 |
-
"datasets==3.0.1",
|
35 |
-
"pytrec_eval==0.5",
|
36 |
-
],
|
37 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|