diff options
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 50 |
1 files changed, 13 insertions, 37 deletions
| @@ -6,53 +6,35 @@ author-email = t0m.vd.l33@gmail.com | |||
| 6 | license = MIT License | 6 | license = MIT License |
| 7 | home-page = http://github.com/tomvanderlee/youtube-podcaster | 7 | home-page = http://github.com/tomvanderlee/youtube-podcaster |
| 8 | description-file = README.rst | 8 | description-file = README.rst |
| 9 | # Add here all kinds of additional classifiers as defined under | ||
| 10 | # https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
| 11 | classifiers = Development Status :: 3 - Alpha, | 9 | classifiers = 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] |
| 16 | console_scripts = | 14 | console_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'. | 18 | packages = |
| 26 | # Additional data files are defined as key value pairs of source and target: | 19 | youtube_podcaster |
| 27 | packages = | 20 | data_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` | ||
| 40 | addopts = tests | 27 | addopts = tests |
| 41 | 28 | ||
| 42 | [pytest] | 29 | [pytest] |
| 43 | # Options for py.test: | 30 | addopts = |
| 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. | ||
| 47 | addopts = | ||
| 48 | --cov youtube_podcaster --cov-report term-missing | ||
| 49 | --verbose | ||
| 50 | 33 | ||
| 51 | [aliases] | 34 | [aliases] |
| 52 | docs = build_sphinx | 35 | docs = build_sphinx |
| 53 | 36 | ||
| 54 | [bdist_wheel] | 37 | [bdist_wheel] |
| 55 | # Use this option if your package is pure-python | ||
| 56 | universal = 1 | 38 | universal = 1 |
| 57 | 39 | ||
| 58 | [build_sphinx] | 40 | [build_sphinx] |
| @@ -60,17 +42,11 @@ source_dir = docs | |||
| 60 | build_dir = docs/_build | 42 | build_dir = docs/_build |
| 61 | 43 | ||
| 62 | [pbr] | 44 | [pbr] |
| 63 | # Let pbr run sphinx-apidoc | ||
| 64 | autodoc_tree_index_modules = True | 45 | autodoc_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 | ||
| 75 | no-vcs = 1 | 48 | no-vcs = 1 |
| 76 | format = bdist_wheel | 49 | format = bdist_wheel |
| 50 | |||
| 51 | [easy_install] | ||
| 52 | |||
