Spaces:
Build error
Build error
config
Browse files- .pre-commit-config.yaml +18 -0
- README.md +4 -4
- requirements.txt +1 -0
.pre-commit-config.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
repos:
|
2 |
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
+
rev: v4.5.0
|
4 |
+
hooks:
|
5 |
+
- id: check-added-large-files
|
6 |
+
args: ['--maxkb=600']
|
7 |
+
- id: check-yaml
|
8 |
+
- id: check-json
|
9 |
+
- id: check-toml
|
10 |
+
- id: end-of-file-fixer
|
11 |
+
- id: trailing-whitespace
|
12 |
+
- id: check-docstring-first
|
13 |
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
14 |
+
rev: v0.4.2
|
15 |
+
hooks:
|
16 |
+
- id: ruff
|
17 |
+
args: [ --fix ]
|
18 |
+
- id: ruff-format
|
README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
---
|
2 |
title: Lczerolens Demo
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.11.0
|
8 |
-
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
short_description: Demo lczerolens features
|
|
|
1 |
---
|
2 |
title: Lczerolens Demo
|
3 |
+
emoji: 🔬
|
4 |
+
colorFrom: black
|
5 |
+
colorTo: white
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.11.0
|
8 |
+
app_file: app/main.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
short_description: Demo lczerolens features
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
lczerolens @ git+https://github.com/Xmaster6y/lczerolens.git#egg=lczerolens[viz]
|