lfp


Logs | Files | README | README | LICENSE | GitLab


1
commit 7372a271df561236628410c7500a64523195293a
2
Author: Connor Etherington <[email protected]>
3
Date:   Sat Mar 30 04:28:52 2024 +0200
4
5
    Auto-Commit Update - 20240330
6
---
7
 lfpreviewer/pyproject.toml | 22 +++++++++++++++++++---
8
 1 file changed, 19 insertions(+), 3 deletions(-)
9
10
diff --git a/lfpreviewer/pyproject.toml b/lfpreviewer/pyproject.toml
11
index 210cda5..6867440 100644
12
--- a/lfpreviewer/pyproject.toml
13
+++ b/lfpreviewer/pyproject.toml
14
@@ -1,12 +1,28 @@
15
 [build-system]
16
-requires = ["setuptools", "wheel"]
17
+requires = ["setuptools>=42", "wheel"]
18
 build-backend = "setuptools.build_meta"
19
 
20
 [project]
21
 name = "lfpreviewer"
22
 version = "1.0.1"
23
+description = "Image Previewer for LFP"
24
+license = {text = "MIT/X Consortium License"}
25
+classifiers = [
26
+    "Environment :: Console",
27
+    "Environment :: X11 Applications",
28
+    "Operating System :: POSIX :: Linux"
29
+]
30
+requires-python = ">=3.6"
31
 dependencies = [
32
-    "docopt>=0.6.2",
33
+    "docopt",
34
     "attrs>=18.2.0",
35
-    "Pillow>=10.2.0"
36
+    "pillow"
37
 ]
38
+
39
+[project.dynamic]
40
+
41
+[project.scripts]
42
+lfpreviewer = "lfpreviewer.__main__:main"
43
+
44
+[project.optional-dependencies]
45
+