markitdown 0.0.1a1__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.3
2
+ Name: markitdown
3
+ Version: 0.0.1a1
4
+ Project-URL: Documentation, https://github.com/microsoft/autogen#readme
5
+ Project-URL: Issues, https://github.com/microsoft/autogen/issues
6
+ Project-URL: Source, https://github.com/microsoft/autogen
7
+ Author-email: Adam Fourney <adamfo@microsoft.com>
8
+ License: MIT
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: Implementation :: CPython
17
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # MarkItDown
22
+
23
+ [![PyPI - Version](https://img.shields.io/pypi/v/markitdown.svg)](https://pypi.org/project/markitdown)
24
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/markitdown.svg)](https://pypi.org/project/markitdown)
25
+
26
+ -----
27
+
28
+ ## Table of Contents
29
+
30
+ - [Installation](#installation)
31
+ - [License](#license)
32
+
33
+ ## Installation
34
+
35
+ ```console
36
+ pip install markitdown
37
+ ```
38
+
39
+ ## License
40
+
41
+ `markitdown` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,21 @@
1
+ # MarkItDown
2
+
3
+ [![PyPI - Version](https://img.shields.io/pypi/v/markitdown.svg)](https://pypi.org/project/markitdown)
4
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/markitdown.svg)](https://pypi.org/project/markitdown)
5
+
6
+ -----
7
+
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [License](#license)
12
+
13
+ ## Installation
14
+
15
+ ```console
16
+ pip install markitdown
17
+ ```
18
+
19
+ ## License
20
+
21
+ `markitdown` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,61 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "markitdown"
7
+ dynamic = ["version"]
8
+ description = ''
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ keywords = []
13
+ authors = [
14
+ { name = "Adam Fourney", email = "adamfo@microsoft.com" },
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Programming Language :: Python",
19
+ "Programming Language :: Python :: 3.8",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: Implementation :: CPython",
25
+ "Programming Language :: Python :: Implementation :: PyPy",
26
+ ]
27
+ dependencies = []
28
+
29
+ [project.urls]
30
+ Documentation = "https://github.com/microsoft/autogen#readme"
31
+ Issues = "https://github.com/microsoft/autogen/issues"
32
+ Source = "https://github.com/microsoft/autogen"
33
+
34
+ [tool.hatch.version]
35
+ path = "src/markitdown/__about__.py"
36
+
37
+ [tool.hatch.envs.types]
38
+ extra-dependencies = [
39
+ "mypy>=1.0.0",
40
+ ]
41
+ [tool.hatch.envs.types.scripts]
42
+ check = "mypy --install-types --non-interactive {args:src/markitdown tests}"
43
+
44
+ [tool.coverage.run]
45
+ source_pkgs = ["markitdown", "tests"]
46
+ branch = true
47
+ parallel = true
48
+ omit = [
49
+ "src/markitdown/__about__.py",
50
+ ]
51
+
52
+ [tool.coverage.paths]
53
+ markitdown = ["src/markitdown", "*/markitdown/src/markitdown"]
54
+ tests = ["tests", "*/markitdown/tests"]
55
+
56
+ [tool.coverage.report]
57
+ exclude_lines = [
58
+ "no cov",
59
+ "if __name__ == .__main__.:",
60
+ "if TYPE_CHECKING:",
61
+ ]
@@ -0,0 +1,4 @@
1
+ # SPDX-FileCopyrightText: 2024-present Adam Fourney <adamfo@microsoft.com>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ __version__ = "0.0.1a1"
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: 2024-present Adam Fourney <adamfo@microsoft.com>
2
+ #
3
+ # SPDX-License-Identifier: MIT
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: 2024-present Adam Fourney <adamfo@microsoft.com>
2
+ #
3
+ # SPDX-License-Identifier: MIT