-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "binary-waterfall"
version = "3.7.0"
readme = "README_pypi.md"
description = "A Raw Data Media Player"
license= {file = "LICENSE"}
authors = [
{name = "Ella Jameson", email = "[email protected]"}
]
classifiers = [
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Multimedia :: Video :: Display"
]
dependencies = [
"pyyaml",
"Pillow",
"PyQt5",
"pydub",
"moviepy",
"proglog"
]
[project.urls]
homepage = "https://github.com/nimaid/binary-waterfall"
repository = "https://github.com/nimaid/binary-waterfall"
Issues = "https://github.com/nimaid/binary-waterfall/issues"
[project.scripts]
binary-waterfall = "binary_waterfall:run"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]