Spaces:
Sleeping
Sleeping
logicsame
commited on
Commit
·
9e64993
1
Parent(s):
6663dc9
installed requirements
Browse files- requirements.txt +24 -0
- setup.py +28 -0
requirements.txt
CHANGED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
datasets
|
2 |
+
sacrebleu
|
3 |
+
py7zr
|
4 |
+
pandas
|
5 |
+
nltk
|
6 |
+
tqdm
|
7 |
+
PyYAML
|
8 |
+
matplotlib
|
9 |
+
notebook
|
10 |
+
boto3
|
11 |
+
mypy-boto3-s3
|
12 |
+
python-box==6.0.2
|
13 |
+
ensure==1.0.2
|
14 |
+
fastapi==0.78.0
|
15 |
+
uvicorn==0.18.3
|
16 |
+
Jinja2==3.1.2
|
17 |
+
torch
|
18 |
+
transformers
|
19 |
+
pytorch-lightning==2.1.0
|
20 |
+
opencv-python==4.8.0.74
|
21 |
+
Pillow==10.0.0
|
22 |
+
tqdm
|
23 |
+
scipy
|
24 |
+
-e .
|
setup.py
CHANGED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import setuptools
|
2 |
+
|
3 |
+
with open('README.md', 'r', encoding='utf-8') as f:
|
4 |
+
long_description = f.read()
|
5 |
+
|
6 |
+
__version__ = '0.0.0'
|
7 |
+
|
8 |
+
|
9 |
+
REPO_NAME = "train-pegasus-model-on-bengali-text-summarization-using-mlops"
|
10 |
+
AUTHOR_USER_NAME = "logicsame"
|
11 |
+
SRC_REPO = "benglasummarization"
|
12 |
+
AUTHOR_EMAIL = "[email protected]"
|
13 |
+
|
14 |
+
setuptools.setup(
|
15 |
+
name=SRC_REPO,
|
16 |
+
version=__version__,
|
17 |
+
author=AUTHOR_USER_NAME,
|
18 |
+
author_email=AUTHOR_EMAIL,
|
19 |
+
description="A small python package for NLP app",
|
20 |
+
long_description=long_description,
|
21 |
+
long_description_content="text/markdown",
|
22 |
+
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
|
23 |
+
project_urls={
|
24 |
+
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
|
25 |
+
},
|
26 |
+
package_dir={"": "src"},
|
27 |
+
packages=setuptools.find_packages(where="src")
|
28 |
+
)
|