jsonpdf 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.
jsonpdf-1.0/LICENSE ADDED
File without changes
jsonpdf-1.0/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: jsonpdf
3
+ Version: 1.0
4
+ License-File: LICENSE
5
+ Dynamic: description
6
+ Dynamic: license-file
7
+
8
+ This is the homepage of our project.
jsonpdf-1.0/README.md ADDED
@@ -0,0 +1 @@
1
+ This is the homepage of our project.
File without changes
File without changes
File without changes
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: jsonpdf
3
+ Version: 1.0
4
+ License-File: LICENSE
5
+ Dynamic: description
6
+ Dynamic: license-file
7
+
8
+ This is the homepage of our project.
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ jsonpdf/__init__.py
5
+ jsonpdf/pdf2image.py
6
+ jsonpdf/pdf2text.py
7
+ jsonpdf.egg-info/PKG-INFO
8
+ jsonpdf.egg-info/SOURCES.txt
9
+ jsonpdf.egg-info/dependency_links.txt
10
+ jsonpdf.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ jsonpdf
jsonpdf-1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
jsonpdf-1.0/setup.py ADDED
@@ -0,0 +1,9 @@
1
+ import setuptools
2
+ from pathlib import Path
3
+
4
+ setuptools.setup(
5
+ name="jsonpdf",
6
+ version=1.0,
7
+ long_description=Path("README.md").read_text(),
8
+ packages=setuptools.find_packages(exclude=["tests", "data"])
9
+ )