forked from interlark/ustvgo-iptv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (52 loc) · 1.33 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
[flake8]
max-line-length = 110
per-file-ignores =
# module imported but unused
__init__.py:F401,
[mypy]
ignore_missing_imports = true
files = ustvgo_iptv.py
explicit_package_bases = true
namespace_packages = true
strict = true
[metadata]
name = ustvgo-iptv
author = Andy Trofimov
author_email = [email protected]
license = MIT
keywords = ustvgo,iptv,m3u8,playlist,tvguide,english
url = https://github.com/interlark/ustvgo-iptv
description = USTVGO Free IPTV
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Topic :: Internet
Topic :: Utilities
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
[options]
packages =
ustvgo_iptv
package_dir =
ustvgo_iptv = .
install_requires =
aiohttp>=3.8.1
tqdm>=4.64.0
netifaces>=0.11.0
furl>=2.1.3
typing_extensions>=3.7.4; python_version<"3.8"
python_requires = >=3.7.4
[options.package_data]
ustvgo_iptv = channels.json
[options.entry_points]
console_scripts = ustvgo-iptv = ustvgo_iptv:main
[options.extras_require]
dev =
wheel>=0.36.2,<0.38
flake8>=4.0.1
mypy>=0.961