-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.16 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
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "lite_media_core"
description = "A lightweight yet powerful media framework for developers."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.6"
dynamic = ["version"]
dependencies = [
"timecode",
"fileseq==1.8.1",
"pymediainfo",
]
[project.urls]
Homepage = "https://github.com/rdelillo/lite_media_core"
[project.optional-dependencies]
testing = ["pytest", "pytest-cov", "mock"]
embedded = ["requests", "validators", "yt-dlp"]
lint = ["ruff"]
[tool.setuptools]
packages = ["lite_media_core"]
include-package-data = true
[tool.setuptools.package-data]
lite_media_core = [
"*.py",
"_media_info/dll_resources/*.dll",
"_media_info/dll_resources/*.so*",
"_media_info/dll_resources/*.dylib"
]
[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"