-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
41 lines (37 loc) · 886 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
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "vktrs"
description = "Video Killed The Radio Star"
readme = "README.md"
requires-python = ">=3.7"
license = {text="MIT"}
dependencies = [
'yt-dlp',
'python-tsp',
'webvtt-py', # only need this if srv2 isn't available
'pytokenizations',
###################
#bunch of other requirements because colab...
###################
#'torch',
'pandas',
#'pillow',
'beautifulsoup4',
'omegaconf',
'scipy',
'toolz',
'numpy',
'lxml',
]
dynamic = ["version"]
[project.optional-dependencies]
api = ['stability-sdk>=0.2.1']
hf = ['diffusers','transformers','ftfy','accelerate']
[tool.setuptools.packages.find]
where =["."]
include = ["vktrs*"]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}