changes in pyproject.toml

This commit is contained in:
matheus 2024-12-28 17:42:25 -03:00
parent e05c19962c
commit 296cd8c3b9
2 changed files with 8 additions and 8 deletions

2
.gitignore vendored
View File

@ -55,7 +55,7 @@ flycheck_*.el
# network security # network security
/network-security.data /network-security.data
for-me.md
### JupyterNotebooks ### ### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks # gitignore template for Jupyter Notebooks
# website: http://jupyter.org/ # website: http://jupyter.org/

View File

@ -1,13 +1,13 @@
[tool.poetry] [tool.poetry]
name = "docling" name = "docowling"
version = "2.14.0" # DO NOT EDIT, updated automatically version = "1.0.0" # DO NOT EDIT, updated automatically
description = "SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications." description = "SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications."
authors = ["Christoph Auer <cau@zurich.ibm.com>", "Michele Dolfi <dol@zurich.ibm.com>", "Maxim Lysak <mly@zurich.ibm.com>", "Nikos Livathinos <nli@zurich.ibm.com>", "Ahmed Nassar <ahn@zurich.ibm.com>", "Panos Vagenas <pva@zurich.ibm.com>", "Peter Staar <taa@zurich.ibm.com>"] authors = ["Christoph Auer <cau@zurich.ibm.com>", "Michele Dolfi <dol@zurich.ibm.com>", "Maxim Lysak <mly@zurich.ibm.com>", "Nikos Livathinos <nli@zurich.ibm.com>", "Ahmed Nassar <ahn@zurich.ibm.com>", "Panos Vagenas <pva@zurich.ibm.com>", "Peter Staar <taa@zurich.ibm.com>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
repository = "https://github.com/DS4SD/docling" repository = "https://github.com/mouraworks/docowling"
homepage = "https://github.com/DS4SD/docling" homepage = "https://github.com/mouraworks/docowling"
keywords= ["docling", "convert", "document", "pdf", "docx", "html", "markdown", "layout model", "segmentation", "table structure", "table former"] keywords= ["docowling", "convert", "document", "pdf", "docx", "html", "markdown", "layout model", "segmentation", "table structure", "table former"]
classifiers = [ classifiers = [
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
@ -18,7 +18,7 @@ keywords= ["docling", "convert", "document", "pdf", "docx", "html", "markdown",
"Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3" "Programming Language :: Python :: 3"
] ]
packages = [{include = "docling"}] packages = [{include = "docowling"}]
[tool.poetry.dependencies] [tool.poetry.dependencies]
###################### ######################
@ -118,7 +118,7 @@ ocrmac = ["ocrmac"]
rapidocr = ["rapidocr-onnxruntime", "onnxruntime"] rapidocr = ["rapidocr-onnxruntime", "onnxruntime"]
[tool.poetry.scripts] [tool.poetry.scripts]
docling = "docowling.cli.main:app" docowling = "docowling.cli.main:app"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]