-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (41 loc) · 1.07 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "vfxdailies"
description = "Tool for vfx/animation/film dailies production."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"PySide6==6.5.0", # GUI Framework
"shotgun_api3==3.5.1", # Shotgun API
# Note: FFmpeg, Nuke, and RV are external software, and must be installed separately.
# Please refer to setup_instructions.md
]
[project.urls]
Homepage = "https://github.com/vfxpaco85/vfxdailies"
[project.optional-dependencies]
testing = ["pytest", "pytest-cov", "mock"]
lint = ["ruff"]
[tool.setuptools]
packages = ["vfxdailies"]
include-package-data = true
[tool.setuptools.exclude-package-data]
"*" = [
"*.pyc",
"*.pyo",
"*.pyd",
"__pycache__",
"*.DS_Store",
"tests/*",
"tests_embedded/*",
"docs/*",
"examples/*",
".*",
"*.md"
]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"