Skip to content

Commit 87615d2

Browse files
authored
Merge pull request #7 from SamhammerAG/KIT-1899
update requirements.
2 parents 8bf077d + a883db3 commit 87615d2

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

requirements.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
langdetect==1.0.8
2-
nltk~=3.6.6
3-
pandas==1.0.3
1+
langdetect~=1.0.9
2+
nltk~=3.7
3+
pandas~=1.5.1
44
numpy~=1.23.4
5-
pytesseract==0.3.9
6-
pdfplumber==0.6.0
7-
opencv-python==4.5.5.64
8-
Pillow==9.0.1
5+
pytesseract~=0.3.10
6+
pdfplumber~=0.7.5
7+
opencv-python~=4.5.5.64
8+
pillow~=9.3.0

setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
#!/usr/bin/env python3
22
from setuptools import setup, find_packages
33

4+
with open("requirements.txt", "r") as f:
5+
required = f.read().splitlines()
6+
47
with open("README.md", "r") as fh:
58
long_description = fh.read()
69

710
setup(
811
name="ai-data-preprocessing-queue",
9-
version="1.2.1",
12+
version="1.3.0",
1013
description="Can be used to pre process data before ai processing",
1114
long_description=long_description,
1215
long_description_content_type="text/markdown",
1316
url="https://github.com/SamhammerAG/ai-data-preprocessing-queue",
1417
packages=find_packages(exclude=["test_data"]),
15-
install_requires=["langdetect==1.0.8", "nltk~=3.6.6", "pandas==1.0.3", "numpy~=1.23.4", "pytesseract == 0.3.9",
16-
"pdfplumber== 0.6.0", "opencv-python==4.5.5.64", "Pillow==9.0.1"]
18+
install_requires=required
1719
)

0 commit comments

Comments
 (0)