document-inference 0.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.
- document_inference-0.0.1/PKG-INFO +20 -0
- document_inference-0.0.1/README.md +0 -0
- document_inference-0.0.1/document_inference/__init__.py +3 -0
- document_inference-0.0.1/document_inference.egg-info/PKG-INFO +20 -0
- document_inference-0.0.1/document_inference.egg-info/SOURCES.txt +7 -0
- document_inference-0.0.1/document_inference.egg-info/dependency_links.txt +1 -0
- document_inference-0.0.1/document_inference.egg-info/top_level.txt +1 -0
- document_inference-0.0.1/setup.cfg +4 -0
- document_inference-0.0.1/setup.py +17 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: document-inference
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Internal Document Analysis Package
|
5
|
+
Home-page: https://company-internal.example.com
|
6
|
+
Author: Internal Team
|
7
|
+
Author-email: dev@company.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Requires-Python: >=3.6
|
10
|
+
Description-Content-Type: text/markdown
|
11
|
+
Dynamic: author
|
12
|
+
Dynamic: author-email
|
13
|
+
Dynamic: classifier
|
14
|
+
Dynamic: description
|
15
|
+
Dynamic: description-content-type
|
16
|
+
Dynamic: home-page
|
17
|
+
Dynamic: requires-python
|
18
|
+
Dynamic: summary
|
19
|
+
|
20
|
+
Private package accidentally exposed
|
File without changes
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: document-inference
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Internal Document Analysis Package
|
5
|
+
Home-page: https://company-internal.example.com
|
6
|
+
Author: Internal Team
|
7
|
+
Author-email: dev@company.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Requires-Python: >=3.6
|
10
|
+
Description-Content-Type: text/markdown
|
11
|
+
Dynamic: author
|
12
|
+
Dynamic: author-email
|
13
|
+
Dynamic: classifier
|
14
|
+
Dynamic: description
|
15
|
+
Dynamic: description-content-type
|
16
|
+
Dynamic: home-page
|
17
|
+
Dynamic: requires-python
|
18
|
+
Dynamic: summary
|
19
|
+
|
20
|
+
Private package accidentally exposed
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
document_inference
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# setup.py
|
2
|
+
from setuptools import setup, find_packages
|
3
|
+
|
4
|
+
setup(
|
5
|
+
name="document-inference",
|
6
|
+
version="0.0.1",
|
7
|
+
description="Internal Document Analysis Package",
|
8
|
+
long_description="Private package accidentally exposed",
|
9
|
+
long_description_content_type="text/markdown",
|
10
|
+
author="Internal Team",
|
11
|
+
author_email="dev@company.com",
|
12
|
+
url="https://company-internal.example.com",
|
13
|
+
packages=find_packages(),
|
14
|
+
include_package_data=True,
|
15
|
+
classifiers=["Programming Language :: Python :: 3"],
|
16
|
+
python_requires=">=3.6",
|
17
|
+
)
|