-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 941 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vsoneliner"
description = "Commandline program for creating Python script for VSPipe"
readme = "README.md"
requires-python = ">=3"
license = "MIT"
keywords = ["VapourSynth"]
authors = [
{ name = "Akatsumekusa", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video"
]
dependencies = [
"coconut"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/Akatmks/vsoneliner"
Issues = "https://github.com/Akatmks/vsoneliner/issues"
Source = "https://github.com/Akatmks/vsoneliner"
[tool.hatch.version]
path = "vsoneliner/__init__.py"
[tool.hatch.build]
include = [
"vsoneliner/*"
]