-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
109 lines (89 loc) · 2.68 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# ###############################################################################
# Copyright : Rahul Singh
# URL : https://github.com/codecliff/PhotoGlimmer
# License : LGPL
# email : codecliff@users.noreply.github.com
# Disclaimer: No warranties, stated or implied.
# Description :
# This is the configuration file for generating appimages and deb insallers for the PhotoGlimmer project
# IMPORTANT: Make sure that dependencies list provides EXACT VERSIONS of opencv-contrib-python and mediapipe,
# otherwise install size will bloat up !
#
# This config file was generated with 0.3.15 using template: https://github.com/beeware/briefcase-template@v0.3.15
# ###############################################################################
[tool.briefcase]
project_name = "PhotoGlimmer"
bundle = "com.github.photoglimmer"
version = "0.3.0"
url = "https://github.com/codecliff/PhotoGlimmer"
license = "LGPL license"
author = "Rahul singh"
author_email = "codecliff@users.noreply.github.com"
[tool.briefcase.app.photoglimmer]
formal_name = "PhotoGlimmer"
description = "AI powered photo editor to tweak illumination on people without altering the background"
long_description = """
Shine a light on individuals with the help of a few sliders, without altering the scene. \
This AI-powered photo editor lets you precisely adjust illumination on people, \
leaving the background untouched.
"""
icon = "src/photoglimmer/icons/appicon"
sources = [
"src/photoglimmer",
]
test_sources = [
"tests",
]
requires = [
"opencv-contrib-python==4.8.1.78",
"PySide2~=5.15",
"mediapipe==0.10.7",
"numpy~=1.19",
"pyqtdarktheme ~=2.1.0",
"splines ~= 0.3.0",
"piexif ~= 1.1.3"
]
test_requires = [
"pytest",
]
[tool.briefcase.app.photoglimmer.macOS]
requires = [
"std-nslog~=1.0.0"
]
[tool.briefcase.app.photoglimmer.linux]
requires = [
]
[tool.briefcase.app.photoglimmer.linux.system.debian]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.photoglimmer.linux.system.rhel]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.photoglimmer.linux.system.arch]
system_requires = [
]
system_runtime_requires = [
]
[tool.briefcase.app.photoglimmer.linux.appimage]
manylinux = "manylinux2014"
system_requires = [
]
linuxdeploy_plugins = []
[tool.briefcase.app.photoglimmer.linux.flatpak]
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "22.08"
flatpak_sdk = "org.freedesktop.Sdk"
[tool.briefcase.app.photoglimmer.windows]
requires = []
# Mobile deployments
[tool.briefcase.app.photoglimmer.iOS]
supported = false
[tool.briefcase.app.photoglimmer.android]
supported = false
# Web deployments
[tool.briefcase.app.photoglimmer.web]
supported = false