forked from in03/proxima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (57 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
[tool.poetry]
name = "proxima"
version = "0.1.0"
description = "Transcode source media in DaVinci Resolve using multiple machines. Great for quickly creating proxies without interrupting work."
authors = ["Caleb Trevatt <in03@users.noreply.github.com>"]
license = "MIT"
include = ["version_constraint_key"]
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0.0"
celery = "^5.1.2"
rich = "^10.12.0"
typer = {extras = ["all"], version = "^0.6.1"}
pyfiglet = "^0.8.post1"
redis = "^3.5.3"
requests = "^2.26.0"
"ruamel.yaml" = "^0.17.17"
schema = "^0.7.5"
deepdiff = "^5.7.0"
pymediainfo = "^5.1.0"
commonregex = "^1.5.3"
yaspin = "^2.1.0"
shortuuid = "^1.0.9"
termynal = "^0.2.0"
notify-py = {git = "https://github.com/in03/notify-py"}
pydavinci = {git = "https://github.com/in03/pydavinci"}
pytest = "^7.2.0"
[tool.poetry.group.dev.dependencies]
black = "^21.12b0"
isort = "^5.10.1"
pre-commit = "^2.16.0"
commitizen = "^2.27.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mike = "^1.1.2"
mkdocs-git-revision-date-localized-plugin = "^1.1.0"
termynal = "^0.2.0"
mkdocs = "*"
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.5.0"
mkdocs-section-index = "^0.3.4"
mkdocstrings = "^0.19.0"
mkdocs-material = "^8.5.10"
[tool.semantic_release]
version_variable = [
"proxima/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = false
upload_to_release = true
build_command = "pip install poetry && poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
proxima = "proxima.cli.main:main"