-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
74 lines (64 loc) · 1.6 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
[tool.poetry]
name = "posterization"
version = "0.1.0"
description = "Automatically creates poster-style art from photographs"
authors = ["Ted Chao <cchao8@gmu.edu>"]
[tool.poetry.dependencies]
python = "^3.6,<3.10"
numpy = "^1.18"
gco-wrapper = "^3.0.3"
pillow = "^7.2.0"
scipy = "^1.5.2"
scikit-image = "^0.17.2"
scikit-learn = "^0.23.2"
cairocffi = "^1.2.0"
pycairo = "^1.20.0"
numba = "^0.51.2"
cvxopt = "1.2.5"
opencv-python-headless = "^4.4.0"
PySide2 = "^5.15.2"
[tool.poetry.dev-dependencies]
pyinstaller = "^4.1"
briefcase = "^0.3.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.briefcase]
project_name = "Posterization"
bundle = "edu.gmu.cs.cragl"
version = "0.1.0"
url = "https://cragl.cs.gmu.edu/posterization"
license = "Other"
author = 'Ted Chao'
author_email = "cchao8@gmu.edu"
[tool.briefcase.app.posterization]
formal_name = "Posterization"
description = "Automatically creates poster-style art from photographs"
icon = "src/posterization/resources/posterization"
sources = ['src/posterization']
requires = [
"numpy",
"git+https://github.com/yig/pyGCO@buil-win",
"pillow",
"scipy",
"scikit-image",
"scikit-learn",
"cairocffi",
"pycairo",
"numba",
"cvxopt",
"opencv-python-headless",
"PySide2"
]
[tool.briefcase.app.posterization.macOS]
requires = []
[tool.briefcase.app.posterization.linux]
requires = []
system_requires = []
[tool.briefcase.app.posterization.windows]
requires = []
# Mobile deployments
[tool.briefcase.app.posterization.iOS]
requires = []
[tool.briefcase.app.posterization.android]
requires = []