Skip to content

Commit

Permalink
Update setup.py with dynamic requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
SohamTilekar committed Mar 30, 2024
1 parent bfd7d1d commit 6881a14
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

__version__ = Path("vidiopy/__version__.py").read_text().strip().split('"')[1]

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

with open(Path(r"./README.md")) as f:
long_description = f.read()

Expand Down Expand Up @@ -43,12 +46,7 @@
],
license="MIT License",
long_description_content_type="text/markdown",
install_requires=[
"rich>=13.7.0",
"numpy>=1.24.4",
"ffmpegio>=0.9.0",
"pillow>=10.2.0",
],
install_requires=requirements,
include_package_data=True,
python_requires=">=3.11, <=3.12.2",
)

0 comments on commit 6881a14

Please sign in to comment.