forked from althonos/ffpb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (72 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[metadata]
name = ffrich
version = 0.2.1
author = banksio
author-email = [email protected]
home-page = https://github.com/banksio/ffrich
description = A simple progress bar for ffmpeg, written in Python using rich
long-description = file: README.md
license = MIT
license-file = COPYING
platform = any
keywords = ffmpeg, ffmpeg-command, progress-bar, python-script, cli
classifiers =
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Operating System :: Unix
Programming Language :: Python
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
Topic :: Multimedia :: Video :: Conversion
project_urls =
Bug Tracker = https://github.com/banksio/ffrich/issues
Changelog = https://github.com/banksio/ffrich/blob/master/CHANGELOG.md
[options]
zip_safe = true
include_package_data = false
python_requires = >= 3.9
py_modules = ffrich
test_suite = tests
setup_require =
setuptools >=39.2
install_requires =
rich >=10.0,<14.0
[options.entry_points]
console_scripts =
ffrich = ffrich:main
[bdist_wheel]
universal = true
[aliases]
test = green
[coverage:report]
show_missing = true
exclude_lines =
pragma: no cover
@abc.abstractmethod
@abc.abstractproperty
raise NotImplementedError
return NotImplemented
[nosetests]
verbosity = 2
with-coverage = true
cover-xml = true
cover-package = ffrich
with-doctest = true
doctest-extension = .rst
rednose = true
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
processes = 1
[pydocstyle]
inherit = false
ignore = D100,D200,D203,D213,D406,D407
match-dir = (?!tests)[^\.].*