-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
67 lines (63 loc) · 1.68 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
[metadata]
name = pytuber
version = attr: pytuber.__version__
description = Manage youtube music playlists
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/tefra/pytuber
author = Christodoulos Tsoulloftas
author_email = "chris@komposta.net",
license = MIT
license_file = LICENSE
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
keywords = youtube,music,playlist,last.fm,cli
project_urls =
Source=https://github.com/tefra/pytuber
Documentation=https://pytuber.readthedocs.io/
[options]
packages = pytuber
install_requires =
click>=5.0
click-completion>=0.5.1
google-api-python-client>=1.7.8
google-auth>=1.6.3
google-auth-oauthlib>=0.3.0
lxml>=4.3.3
pydrag>=22.5
tabulate[widechars]>=0.8.3
yaspin>=0.14.2
python_requires = >=3.6
include_package_data = True
[options.entry_points]
console_scripts =
pytuber=pytuber.cli:cli
[options.extras_require]
dev =
Pygments
check-manifest
codecov
pre-commit
pytest
pytest-cov
tox
docs =
sphinx
sphinx-rtd-theme
sphinxcontrib-programoutput
[flake8]
ignore = E203, E266, E501, W503, F821
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9