removed numpy dependancy

This commit is contained in:
2024-10-17 09:11:40 +02:00
committed by Flo Greistorfer
parent 0973868782
commit 0ec663ae68
3 changed files with 1 additions and 4 deletions

View File

@@ -20,7 +20,6 @@ Python script to generate static HTML files for website galleries.
## Requirements
- Python 3.x
- `numpy` library
- `tqdm` library
- `Jinja2` library
- `Pillow` library
@@ -33,7 +32,7 @@ Python script to generate static HTML files for website galleries.
Install the required libraries using pip:
```sh
pip install numpy tqdm Jinja2 Pillow rich-argparse cairosvg python-json-logger
pip install tqdm Jinja2 Pillow rich-argparse cairosvg python-json-logger
```
## Usage

View File

@@ -6,7 +6,6 @@ import json
from typing import Any, Dict, List, Tuple
from datetime import datetime
import numpy as np
from tqdm.auto import tqdm
from PIL import Image, ExifTags, TiffImagePlugin
from jinja2 import Environment, FileSystemLoader

View File

@@ -1,6 +1,5 @@
CairoSVG==2.7.1
Jinja2==3.1.4
numpy==2.0.0
pillow==10.4.0
pyinstaller==6.9.0
python-json-logger==2.0.7