-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.22 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ass-autoclip"
description = "𝓪𝓾𝓽𝓸𝓶𝓪𝓰𝓲𝓬𝓪𝓵𝓵𝔂"
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
keywords = ["VapourSynth"]
authors = [
{ name = "Zahuczky", email = "[email protected]" },
{ name = "Akatsumekusa", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Video"
]
# Update the dependencies message in Lua and Python's __main__.py as well!
dependencies = [
"numpy",
"PySide6",
"scikit-image"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/Zahuczky/Zahuczkys-Aegisub-Scripts"
Issues = "https://github.com/Zahuczky/Zahuczkys-Aegisub-Scripts/issues"
Source = "https://github.com/Zahuczky/Zahuczkys-Aegisub-Scripts"
[tool.hatch.version]
path = "ass_autoclip/__init__.py"
[tool.hatch.build]
include = [
"ass_autoclip/*"
]