-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.cfg
52 lines (47 loc) · 1.5 KB
/
setup.cfg
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
47
48
49
50
51
52
[metadata]
name = pysubs2
version = attr: pysubs2.common.VERSION
author = Tomas Karabela
author_email = [email protected]
description = A library for editing subtitle files
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tkarabela/pysubs2
keywords = SubStation, SubRip, MicroDVD, MPL2, WebVTT, ass, srt, sub, vtt, subtitles, captions
license = MIT
project_urls =
Documentation = https://pysubs2.readthedocs.io
Bug Tracker = https://github.com/tkarabela/pysubs2/issues
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Development Status :: 5 - Production/Stable
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup
Topic :: Multimedia :: Video
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Typing :: Typed
[options]
packages =
pysubs2
pysubs2.formats
python_requires = >=3.8
[options.entry_points]
console_scripts =
pysubs2 = pysubs2.cli:__main__
[mypy]
files = pysubs2, tests/test_*.py
[coverage:run]
branch = True
[coverage:report]
show_missing = True
skip_covered = True