-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (38 loc) · 1.12 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
[tool.poetry]
name = "scalecord"
version = "0.1.3"
description = "An image upscaling bot for discord using PyTorch supported models from OpenModelDB."
authors = ["Investigamer <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
[[tool.poetry.packages]]
include = "scalecord"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
discord-py = "^2.3.2"
torch = {version = "^2.2.1+cu121", source = "pytorch"}
torchvision = {version = "^0.17.1+cu121", source = "pytorch"}
spandrel = "^0.2.1"
click = "^8.1.7"
omnitils = {git = "https://github.com/Investigamer/omnitils.git", tag = "1.2.0"}
[tool.poetry.group.dev.dependencies]
commitizen = "^3.14.0"
mypy = "^1.8.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[tool.commitizen]
version = "0.1.3"
tag_format = "$major.$minor.$patch"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version"
]
[tool.poetry.scripts]
scalecord = 'scalecord.cli:ScalecordCLI'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"