-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 944 Bytes
/
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
[tool.poetry]
name = "rex"
version = "0.1.0"
description = "Avoid extinction-level events with your DaVinci Resolve projects"
authors = ["Caleb Trevatt <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7.2,<4"
rich = "^12.0.0"
pyfiglet = "^0.8.post1"
typer = {extras = ["all"], version = "^0.6.1"}
deepdiff = "^5.7.0"
"ruamel.yaml" = "^0.17.21"
schema = "^0.7.5"
notify-py = {git = "https://github.com/in03/notify-py"}
pydavinci = {git = "https://github.com/in03/pydavinci"}
yaspin = "^2.2.0"
fastapi = "^0.85.0"
uvicorn = {extras = ["standard"], version = "^0.18.3"}
requests = "^2.28.1"
psutil = "^5.9.3"
schedule = "^1.1.0"
chime = "^0.5.3"
[tool.poetry.dev-dependencies]
mkdocs-material = "^7.3.6"
black = "^21.12b0"
isort = "^5.10.1"
pre-commit = "^2.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
rex = "rex.app.cli:main"