37 lines
1023 B
INI
37 lines
1023 B
INI
|
; setup.cfg is the configuration file for setuptools.
|
||
|
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
|
||
|
|
||
|
[metadata]
|
||
|
name = nextcast
|
||
|
version = 0.0.1
|
||
|
author = Daniel Langbein
|
||
|
author_email = daniel@systemli.org
|
||
|
description = Nextcloud Podcast Client
|
||
|
long_description = file: README.md
|
||
|
long_description_content_type = text/markdown
|
||
|
url = https://git.privacy1st.de/langfingaz/nextcast
|
||
|
project_urls =
|
||
|
Bug Tracker = https://git.privacy1st.de/langfingaz/nextcast/issues
|
||
|
|
||
|
; https://pypi.org/classifiers/
|
||
|
classifiers =
|
||
|
Development Status :: 4 - Beta
|
||
|
Programming Language :: Python :: 3
|
||
|
License :: OSI Approved :: MIT License
|
||
|
Operating System :: Unix
|
||
|
|
||
|
[options]
|
||
|
package_dir =
|
||
|
= src
|
||
|
packages = find:
|
||
|
python_requires = >=3.6.9
|
||
|
|
||
|
[options.packages.find]
|
||
|
where = src
|
||
|
|
||
|
[options.entry_points]
|
||
|
; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
|
||
|
console_scripts=
|
||
|
nextcast = nextcast.app_play_episode:main
|
||
|
nextcast-resume = nextcast.app_resume_playback:main
|