-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (45 loc) · 1.11 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
48
49
50
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-git-versioning",
"wheel"
]
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE"]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.dev{ccount}"
[project]
name = "media-management-scripts"
description = "Media Management Scripts"
dynamic = ["version"]
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Ray Douglass" },
]
license = { text = "Apache 2.0" }
requires-python = ">=3.9"
dependencies = [
"pycaption",
"pyparsing",
"python-magic",
"pythondialog",
"pyyaml",
"requests",
"tempita",
"texttable",
"tmdbsimple",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.scripts]
manage-media = "media_management_scripts.main:main"
convert-dvds = "media_management_scripts.convert_daemon:main"
tvdb-api = "media_management_scripts.tvdb_api:main"
[project.urls]
Homepage = "https://github.com/raydouglass/media_management_scripts"