blob: e559f208344bfbe82fcd6c6a120bc4bbcfe039a7 (
plain)
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 = youtube-podcaster
summary = Converts youtube playlists to RSS-feeds
author = Tom van der Lee
author-email = t0m.vd.l33@gmail.com
license = MIT License
home-page = http://github.com/tomvanderlee/youtube-podcaster
description-file = README.rst
classifiers = Development Status :: 3 - Alpha,
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
[entry_points]
console_scripts =
youtube-podcaster = youtube_podcaster:main
[files]
packages =
youtube_podcaster
data_files =
share/man/man1/ = docs/_build/man/*
share/youtube-podcaster/ = youtube-podcaster.json.example
[extras]
[test]
addopts = tests
[pytest]
addopts =
--cov youtube_podcaster --cov-report term-missing
--verbose
[aliases]
docs = build_sphinx
[bdist_wheel]
universal = 1
[build_sphinx]
source_dir = docs
build_dir = docs/_build
[pbr]
autodoc_tree_index_modules = True
[devpi:upload]
no-vcs = 1
format = bdist_wheel
[easy_install]
|