Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Oct 4, 2024
1 parent 4b21828 commit 192ae9d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
from pathlib import Path

from setuptools import setup

with open("requirements.txt") as f:
requirements = f.read().splitlines()

requirements_path = Path("requirements.txt")
dependency_links = [r for r in requirements_path.read_text().splitlines() if r.startswith("git+")]
requirements = [r for r in requirements_path.read_text().splitlines() if not r.startswith("git+")]

PROJECT_NAME = "pdf-document-layout-analysis"

setup(
name=PROJECT_NAME,
packages=["pdf_tokens_type_trainer", "pdf_features", "pdf_token_type_labels", "fast_trainer"],
package_dir={"": "src"},
version="0.9",
version="0.10",
url="https://github.com/huridocs/pdf-document-layout-analysis",
author="HURIDOCS",
description="This tool is for PDF document layout analysis",
install_requires=requirements,
setup_requieres=requirements,
setup_requires=requirements,
dependency_links=dependency_links,
)

0 comments on commit 192ae9d

Please sign in to comment.