-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (52 loc) · 1.42 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
[tool.poetry]
name = "bandcrash"
version = "0.8.0"
description = "Tools for publishing albums to the web and digital stores"
authors = ["fluffy <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/fluffy-critter/bandcrash"
documentation = "https://bandcrash.readthedocs.io/"
include = [
"bandcrash/__version__.py"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
mutagen = "^1.45.1"
chardet = "^4.0.0"
pyside6 = { version = ">=6.6,<6.7", optional = true }
pyffmpeg = "^2.4.2.18.1"
pillow = [
{ platform = "darwin", version = "^10.4.0", source = "devpi-fluffy" },
{ markers = "sys_platform != 'darwin'", version = "^10.4.0", source = "pypi"}
]
camptown = "^0.3.7"
unidecode = "^1.3.8"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.4"
isort = "^5.12.0"
pylint = "^3.0.1"
mypy = "^1.5.1"
types-chardet = "^5.0.4.6"
pyinstaller = "^6.0.0"
delocate = "^0.10.4"
pyside6-stubs = "^6.4.2.0"
sphinx-rtd-theme = "^1.3.0"
sphinx = "^7.2.6"
sphinx-copybutton = "^0.5.2"
devpi-client = "^7.0.2"
[tool.poetry.extras]
gui = [ "pyside6" ]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "devpi-fluffy"
url = "https://m.devpi.net/fluffy/prod/+simple"
priority = "explicit"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
bandcrash = 'bandcrash.cli:main'
bandcrash-gui = 'bandcrash.gui:main'