utilities-nlp 6.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- utilities_nlp-6.0.1/LICENSE.txt +3 -0
- utilities_nlp-6.0.1/MANIFEST.in +1 -0
- utilities_nlp-6.0.1/PKG-INFO +58 -0
- utilities_nlp-6.0.1/setup.cfg +7 -0
- utilities_nlp-6.0.1/setup.py +67 -0
- utilities_nlp-6.0.1/utilities_nlp/__init__.py +7 -0
- utilities_nlp-6.0.1/utilities_nlp/arial-bold-italic.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/arial-bold.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/arial-italic.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/arial.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/courier-new.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/upscale/__init__.py +0 -0
- utilities_nlp-6.0.1/utilities_nlp/upscale/config.json +9 -0
- utilities_nlp-6.0.1/utilities_nlp/upscale/pytorch_model_4x.pt +0 -0
- utilities_nlp-6.0.1/utilities_nlp/utilities_nlp.py +9067 -0
- utilities_nlp-6.0.1/utilities_nlp/verdana-bold-italic.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/verdana-bold.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/verdana-italic.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp/verdana.ttf +0 -0
- utilities_nlp-6.0.1/utilities_nlp.egg-info/PKG-INFO +58 -0
- utilities_nlp-6.0.1/utilities_nlp.egg-info/SOURCES.txt +23 -0
- utilities_nlp-6.0.1/utilities_nlp.egg-info/dependency_links.txt +1 -0
- utilities_nlp-6.0.1/utilities_nlp.egg-info/requires.txt +47 -0
- utilities_nlp-6.0.1/utilities_nlp.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
recursive-include utilities_nlp *.py *.ttf *.bin *.cfg *.names *.weights *.json *.pt *.txt
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: utilities_nlp
|
|
3
|
+
Version: 6.0.1
|
|
4
|
+
Home-page: https://github.com/sapiens-technology/utilities_nlp
|
|
5
|
+
Author: SAPIENS TECHNOLOGY
|
|
6
|
+
License: Proprietary Software
|
|
7
|
+
License-File: LICENSE.txt
|
|
8
|
+
Requires-Dist: TTS==0.22.0
|
|
9
|
+
Requires-Dist: sapiens-transformers
|
|
10
|
+
Requires-Dist: sapiens-infinite-context-window
|
|
11
|
+
Requires-Dist: paddleocr==2.7.3
|
|
12
|
+
Requires-Dist: paddlepaddle
|
|
13
|
+
Requires-Dist: pillow
|
|
14
|
+
Requires-Dist: cloudinary
|
|
15
|
+
Requires-Dist: count-tokens
|
|
16
|
+
Requires-Dist: tiktoken
|
|
17
|
+
Requires-Dist: opencv-python
|
|
18
|
+
Requires-Dist: opencv-python-headless
|
|
19
|
+
Requires-Dist: ffmpeg-python
|
|
20
|
+
Requires-Dist: gTTS
|
|
21
|
+
Requires-Dist: pydub
|
|
22
|
+
Requires-Dist: noisereduce
|
|
23
|
+
Requires-Dist: yt-dlp
|
|
24
|
+
Requires-Dist: httpx<0.28.0
|
|
25
|
+
Requires-Dist: youtube-search-python
|
|
26
|
+
Requires-Dist: youtube-transcript-api
|
|
27
|
+
Requires-Dist: moviepy
|
|
28
|
+
Requires-Dist: certifi
|
|
29
|
+
Requires-Dist: beautifulsoup4
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: fasttext
|
|
32
|
+
Requires-Dist: langid
|
|
33
|
+
Requires-Dist: langdetect
|
|
34
|
+
Requires-Dist: requests
|
|
35
|
+
Requires-Dist: mutagen
|
|
36
|
+
Requires-Dist: openai-whisper
|
|
37
|
+
Requires-Dist: setuptools-rust
|
|
38
|
+
Requires-Dist: fpdf
|
|
39
|
+
Requires-Dist: reportlab
|
|
40
|
+
Requires-Dist: python-docx
|
|
41
|
+
Requires-Dist: docx
|
|
42
|
+
Requires-Dist: openpyxl
|
|
43
|
+
Requires-Dist: pandas
|
|
44
|
+
Requires-Dist: XlsxWriter
|
|
45
|
+
Requires-Dist: python-pptx
|
|
46
|
+
Requires-Dist: matplotlib
|
|
47
|
+
Requires-Dist: seaborn
|
|
48
|
+
Requires-Dist: graphviz
|
|
49
|
+
Requires-Dist: networkx
|
|
50
|
+
Requires-Dist: wordcloud
|
|
51
|
+
Requires-Dist: rembg
|
|
52
|
+
Requires-Dist: onnxruntime
|
|
53
|
+
Requires-Dist: super-image
|
|
54
|
+
Requires-Dist: huggingface-hub
|
|
55
|
+
Dynamic: author
|
|
56
|
+
Dynamic: home-page
|
|
57
|
+
Dynamic: license
|
|
58
|
+
Dynamic: requires-dist
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
|
|
2
|
+
# All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
|
|
3
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|
|
4
|
+
from setuptools import setup, find_packages
|
|
5
|
+
package_name = 'utilities_nlp'
|
|
6
|
+
version = '6.0.1'
|
|
7
|
+
setup(
|
|
8
|
+
name=package_name,
|
|
9
|
+
version=version,
|
|
10
|
+
author='SAPIENS TECHNOLOGY',
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
include_package_data=True,
|
|
13
|
+
install_requires=[
|
|
14
|
+
'TTS==0.22.0',
|
|
15
|
+
'sapiens-transformers',
|
|
16
|
+
'sapiens-infinite-context-window',
|
|
17
|
+
'paddleocr==2.7.3',
|
|
18
|
+
'paddlepaddle',
|
|
19
|
+
'pillow',
|
|
20
|
+
'cloudinary',
|
|
21
|
+
'count-tokens',
|
|
22
|
+
'tiktoken',
|
|
23
|
+
'opencv-python',
|
|
24
|
+
'opencv-python-headless',
|
|
25
|
+
'ffmpeg-python',
|
|
26
|
+
'gTTS',
|
|
27
|
+
'pydub',
|
|
28
|
+
'noisereduce',
|
|
29
|
+
'yt-dlp',
|
|
30
|
+
'httpx<0.28.0',
|
|
31
|
+
'youtube-search-python',
|
|
32
|
+
'youtube-transcript-api',
|
|
33
|
+
'moviepy',
|
|
34
|
+
'certifi',
|
|
35
|
+
'beautifulsoup4',
|
|
36
|
+
'numpy',
|
|
37
|
+
'fasttext',
|
|
38
|
+
'langid',
|
|
39
|
+
'langdetect',
|
|
40
|
+
'requests',
|
|
41
|
+
'mutagen',
|
|
42
|
+
'openai-whisper',
|
|
43
|
+
'setuptools-rust',
|
|
44
|
+
'fpdf',
|
|
45
|
+
'reportlab',
|
|
46
|
+
'python-docx',
|
|
47
|
+
'docx',
|
|
48
|
+
'openpyxl',
|
|
49
|
+
'pandas',
|
|
50
|
+
'XlsxWriter',
|
|
51
|
+
'python-pptx',
|
|
52
|
+
'matplotlib',
|
|
53
|
+
'seaborn',
|
|
54
|
+
'graphviz',
|
|
55
|
+
'networkx',
|
|
56
|
+
'wordcloud',
|
|
57
|
+
'rembg',
|
|
58
|
+
'onnxruntime',
|
|
59
|
+
'super-image',
|
|
60
|
+
'huggingface-hub'
|
|
61
|
+
],
|
|
62
|
+
url='https://github.com/sapiens-technology/utilities_nlp',
|
|
63
|
+
license='Proprietary Software'
|
|
64
|
+
)
|
|
65
|
+
# This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
|
|
66
|
+
# All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
|
|
67
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
|
|
2
|
+
# All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
|
|
3
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|
|
4
|
+
from .utilities_nlp import *
|
|
5
|
+
# This is a library of utility codes with features to facilitate the development and programming of language model algorithms from Sapiens Technology®.
|
|
6
|
+
# All code here is the intellectual property of Sapiens Technology®, and any public mention, distribution, modification, customization, or unauthorized sharing of this or other codes from Sapiens Technology® will result in the author being legally punished by our legal team.
|
|
7
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|