-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (39 loc) · 844 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
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pytivometa"
dynamic = ["version"]
description = "Creates pytivo metadata for video files."
readme = "README.rst"
license = "MIT"
requires-python = ">=3.5"
authors = [
{ name = "Matthew A. Clapp", email = "[email protected]" },
]
keywords = [
"pytivo",
]
classifiers = [
"Natural Language :: English",
]
dependencies = [
"IMDbPY>=6.5",
]
[project.scripts]
pytivometa = "pytivometa.pytivometa:cli_start"
[project.urls]
Homepage = "https://github.com/itsayellow/pytivometa"
[tool.hatch.version]
path = "src/pytivometa/__about__.py"
[tool.hatch.build.targets.wheel]
packages = [
"src/pytivometa",
]
[tool.hatch.build.targets.sdist]
include = [
"/ src",
]
[tool.isort]
profile = "black"
known_first_party = ["helpers"]