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