pdf-classifier 0.1.0__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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: pdf-classifier
3
+ Version: 0.1.0
4
+ Summary: Automatically classify PDFs into categories using ML
5
+ Home-page: https://github.com/sarishtshreshth0/Intelligent-PDF-Document-Classifier-Auto-Organiser
6
+ Author: Sarisht Shreshth
7
+ Author-email: sarishtshreshth@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: pymupdf
14
+ Requires-Dist: scikit-learn
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ # PDF Classifier
26
+ Automatically classify PDFs using ML.
@@ -0,0 +1,2 @@
1
+ # PDF Classifier
2
+ Automatically classify PDFs using ML.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: pdf-classifier
3
+ Version: 0.1.0
4
+ Summary: Automatically classify PDFs into categories using ML
5
+ Home-page: https://github.com/sarishtshreshth0/Intelligent-PDF-Document-Classifier-Auto-Organiser
6
+ Author: Sarisht Shreshth
7
+ Author-email: sarishtshreshth@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: pymupdf
14
+ Requires-Dist: scikit-learn
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ # PDF Classifier
26
+ Automatically classify PDFs using ML.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ pdf_classifier.egg-info/PKG-INFO
4
+ pdf_classifier.egg-info/SOURCES.txt
5
+ pdf_classifier.egg-info/dependency_links.txt
6
+ pdf_classifier.egg-info/requires.txt
7
+ pdf_classifier.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ pymupdf
2
+ scikit-learn
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,26 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name = "pdf-classifier",
5
+ version = "0.1.0",
6
+ author = "Sarisht Shreshth",
7
+ author_email = "sarishtshreshth@gmail.com",
8
+ description = "Automatically classify PDFs into categories using ML",
9
+ long_description = open("README.md").read(),
10
+ long_description_content_type = "text/markdown",
11
+ url = "https://github.com/sarishtshreshth0/Intelligent-PDF-Document-Classifier-Auto-Organiser",
12
+ packages = find_packages(),
13
+ package_data = {
14
+ "pdf_classifier": ["models/*.pkl"], # pkl files bhi include karo
15
+ },
16
+ install_requires = [
17
+ "pymupdf",
18
+ "scikit-learn",
19
+ ],
20
+ classifiers = [
21
+ "Programming Language :: Python :: 3",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: OS Independent",
24
+ ],
25
+ python_requires = ">=3.8",
26
+ )