-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
88 lines (79 loc) · 1.8 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
81
82
83
84
85
86
87
88
# coding: utf-8
[metadata]
name = tvrip
version = 3.4
description = Extract and transcode TV series from DVD or Bluray
long_description = file: README.rst
author = Dave Jones
author_email = dave@waveform.org.uk
project_urls =
Source Code = https://github.com/waveform80/tvrip
Issue Tracker = https://github.com/waveform80/tvrip/issues
keywords = handbrake dvd bluray tv rip
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Multimedia :: Video :: Conversion
[options]
packages = find:
python_requires = >=3.10
install_requires =
setuptools
sqlalchemy>=1.4
requests
docutils
rich
[options.package_data]
tvrip =
docs/*.rst
sql/*.sql
[options.extras_require]
test =
pytest
pytest-cov
doc =
sphinx
sphinx-rtd-theme
[options.entry_points]
console_scripts =
tvrip = tvrip.main:main
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
[coverage:run]
source = tvrip
branch = true
[coverage:report]
show_missing = true
exclude_lines =
assert False
raise NotImplementedError
raise AssertionError
pass
[copyrights:settings]
include =
**/*.py
**/*.rst
exclude =
docs/examples/*.py
docs/license.rst
tvrip/docs/*.rst
license = LICENSE.txt
preamble =
tvrip: extract and transcode DVDs of TV series
strip-preamble = false
[previewer:settings]
command = make -C docs html
html = build/html
watch =
tvrip/*.py
docs/*.rst
README.rst