aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg50
1 files changed, 13 insertions, 37 deletions
diff --git a/setup.cfg b/setup.cfg
index f1b8f8c..e559f20 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,53 +6,35 @@ author-email = t0m.vd.l33@gmail.com
6license = MIT License 6license = MIT License
7home-page = http://github.com/tomvanderlee/youtube-podcaster 7home-page = http://github.com/tomvanderlee/youtube-podcaster
8description-file = README.rst 8description-file = README.rst
9# Add here all kinds of additional classifiers as defined under
10# https://pypi.python.org/pypi?%3Aaction=list_classifiers
11classifiers = Development Status :: 3 - Alpha, 9classifiers = Development Status :: 3 - Alpha,
12 License :: OSI Approved :: MIT License 10 License :: OSI Approved :: MIT License
13 Programming Language :: Python :: 3 :: Only 11 Programming Language :: Python :: 3 :: Only
14 12
15[entry_points] 13[entry_points]
16console_scripts = 14console_scripts =
17 youtube-podcaster = youtube_podcaster:main 15 youtube-podcaster = youtube_podcaster:main
18# Add here console scripts like:
19# console_scripts =
20# hello_world = youtube_podcaster.module:function
21# as well as other entry_points.
22
23 16
24[files] 17[files]
25# Add here 'data_files', 'packages' or 'namespace_packages'. 18packages =
26# Additional data files are defined as key value pairs of source and target: 19 youtube_podcaster
27packages = 20data_files =
28 youtube_podcaster 21 share/man/man1/ = docs/_build/man/*
29# data_files = 22 share/youtube-podcaster/ = youtube-podcaster.json.example
30# share/youtube_podcaster_docs = docs/*
31 23
32[extras] 24[extras]
33# Add here additional requirements for extra features, like:
34# PDF =
35# ReportLab>=1.2
36# RXP
37 25
38[test] 26[test]
39# py.test options when running `python setup.py test`
40addopts = tests 27addopts = tests
41 28
42[pytest] 29[pytest]
43# Options for py.test: 30addopts =
44# Specify command line options as you would do when invoking py.test directly. 31 --cov youtube_podcaster --cov-report term-missing
45# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml 32 --verbose
46# in order to write a coverage file that can be read by Jenkins.
47addopts =
48 --cov youtube_podcaster --cov-report term-missing
49 --verbose
50 33
51[aliases] 34[aliases]
52docs = build_sphinx 35docs = build_sphinx
53 36
54[bdist_wheel] 37[bdist_wheel]
55# Use this option if your package is pure-python
56universal = 1 38universal = 1
57 39
58[build_sphinx] 40[build_sphinx]
@@ -60,17 +42,11 @@ source_dir = docs
60build_dir = docs/_build 42build_dir = docs/_build
61 43
62[pbr] 44[pbr]
63# Let pbr run sphinx-apidoc
64autodoc_tree_index_modules = True 45autodoc_tree_index_modules = True
65# autodoc_tree_excludes = ...
66# Let pbr itself generate the apidoc
67# autodoc_index_modules = True
68# autodoc_exclude_modules = ...
69# Convert warnings to errors
70# warnerrors = True
71 46
72[devpi:upload] 47[devpi:upload]
73# Options for the devpi: PyPI serer and packaging tool
74# VCS export must be deactivated since we are using setuptools-scm
75no-vcs = 1 48no-vcs = 1
76format = bdist_wheel 49format = bdist_wheel
50
51[easy_install]
52