-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.09 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
[tool.poetry]
name = "nul-rdc-scripts"
version = "0.5.1"
description = "Scripts for NUL RDC Digitization Team"
authors = [
"Northwestern University Libraries <repository@northwestern.edu>",
"Sophia Francis",
"Alec Bertoy (until May 2024",
"Joshua Yocum (until Oct 2022)",
]
packages = [{include = "nulrdcscripts"}]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
progressbar2 = "^4.5.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
aproc = 'nulrdcscripts.aproc.aproc:main'
vproc = 'nulrdcscripts.vproc.vproc:main'
ingest = 'nulrdcscripts.ingest.ingest:main'
embedExtract = 'nulrdcscripts.tools.EmbedExtract.runfile:main'
ffplaywindow = 'nulrdcscripts.tools.ffplaywindow.main:main'
spectrograms = 'nulrdcscripts.tools.spectrogramgeneration.main:main'
md5 = 'nulrdcscripts.tools.md5generation.main:main'
trim = 'nulrdcscripts.tools.videotrimmer.main:main'
micro = 'nulrdcscripts.ingestMicro.ingest:main'
meta = 'nulrdcscripts.tools.generatemetadataTEMP.main:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"