aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 4a6991084720ced36210ad1e82fa34f1cc12861c (plain)
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
[project]
name = "srtfilter"
version = "0.2.0"
authors = [
    { name="Arjun Satarkar", email="me@arjunsatarkar.net" },
]
requires-python = ">=3.12"
readme = "README.md"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]
dependencies = [
    "click==8.1.*"
]

[project.scripts]
srtfilter = "srtfilter.srtfilter_cli:main"

[project.urls]
Homepage = "https://github.com/arjunsatarkar/srtfilter"
Issues = "https://github.com/arjunsatarkar/srtfilter/issues"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"