Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Apr 2, 2024
1 parent 0bae270 commit 68924a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from setuptools import setup

path = Path("requirements.txt")
dependency_links = [r for r in path.read_text().splitlines() if r.startswith("git+")]
requirements = [r for r in path.read_text().splitlines() if not r.startswith("git+")]
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_paragraphs_extraction"

Expand Down

0 comments on commit 68924a4

Please sign in to comment.