-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.19 KB
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
[project]
name = "ass"
version = "1.0.3"
description = "A library for parsing and manipulating Advanced SubStation Alpha subtitle files."
authors = [
{ name="Tony Young", email="author@example.com" },
{ name="FichteFoll", email="fichtefoll2@googlemail.com" },
{ name="Myaamori" },
]
maintainers = [
{ name="FichteFoll", email="fichtefoll2@googlemail.com" },
]
readme = "README.md"
requires-python = ">=3.8.1"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup",
]
dependencies = []
[project.urls]
Homepage = "http://github.com/chireiden/python-ass"
Issues = "http://github.com/chireiden/python-ass/issues"
"Release Notes" = "https://github.com/chireiden/python-ass/releases"
[dependency-groups]
dev = [
"coverage",
"flake8>=7.0.0",
"pytest",
]
[build-system]
requires = ["uv_build>=0.8.13"]
build-backend = "uv_build"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]