-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
82 lines (75 loc) · 2.19 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
[tool.poetry]
name = "proxyshop"
version = "1.13.2"
description = "Photoshop automation tool for generating high quality Magic the Gathering card renders."
authors = ["Investigamer <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
keywords = ["proxyshop", "proxy", "mtg", "magic", "gathering", "cards", "photoshop", "magic the gathering", "playtest"]
[tool.poetry.urls]
Changelog = "https://github.com/Investigamer/Proxyshop/blob/main/CHANGELOG.md"
Discord = "https://discord.gg/magicproxies"
Documentation = "https://investigamer.github.io/Proxyshop"
Issues = "https://github.com/Investigamer/Proxyshop/issues"
Source = "https://github.com/Investigamer/Proxyshop"
Sponsor = "https://patreon.com/mpcfill"
[[tool.poetry.packages]]
include = 'src/../'
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
photoshop-python-api = "^0.22.4"
requests = "^2.28.1"
asynckivy = "^0.7.0"
Pillow = "^10.3.0"
kivy = "^2.3.0"
typing-extensions = "^4.5.0"
ratelimit = "^2.2.1"
backoff = "^2.2.1"
pathvalidate = "^3.2.0"
fonttools = "^4.39.3"
pyyaml = "^6.0"
tqdm = "^4.65.0"
click = "^8.1.7"
tomli = "^2.0.1"
yarl = "^1.9.3"
pydantic = "^2.5.2"
omnitils = "^1.4.4"
dynaconf = {extras = ["yaml"], version = "^3.2.6"}
hexproof = "^0.3.7"
rich = "^13.8.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
mypy = "^1.6.0"
commitizen = "^3.12.0"
setuptools = "^67.6.0"
matplotlib = "^3.7.2"
psd-tools = "^1.9.28"
pyclean = "^2.2.0"
pyinstaller = "^5.12.0"
pre-commit = "^3.5.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.8"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocs-pymdownx-material-extras = "^2.5.5"
mkdocs-minify-plugin = "^0.7.1"
mkdocstrings-python = "^1.7.3"
mkdocs-gen-files = "^0.5.0"
mkdocs-autolinks-plugin = "^0.7.1"
mkdocs-same-dir = "^0.1.2"
mkdocs-git-revision-date-plugin = "^0.3.2"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
memory-profiler = "^0.61.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.13.2"
encoding = "utf-8"
changelog_start_rev = 'v1.2.0'
tag_format = "v$major.$minor.$patch"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version"
]
[tool.poetry.scripts]
proxyshop = 'main:launch_cli'