songs/setup.cfg

46 lines
1.6 KiB
INI
Raw Permalink Normal View History

2020-11-01 11:51:14 +01:00
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
2020-11-02 15:51:12 +01:00
name = negromate.songs
version = attr: negromate.songs.VERSION
license-file = LICENSE.txt
author = Ales (Shagi) Zabala Alava
author_email = shagi@gisa-elkartea.org
url = http://negromate.rocks
description = NegroMate karaoke song database library
long_description_content_type = text/markdown
2020-11-06 16:32:56 +01:00
long_description = files: README.md, CHANGELOG.md
2020-11-02 15:51:12 +01:00
license = GPLv3
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
Topic :: Games/Entertainment
[options]
2020-11-08 20:23:28 +01:00
packages = find_namespace:
2020-11-02 15:51:12 +01:00
zip_safe = true
python_requires = >= 3.4
install_requires =
importlib_metadata
2020-11-02 15:51:12 +01:00
webvtt-py
asstosrt ==0.1.6
srt ==3.5.3
2020-11-02 15:51:12 +01:00
[options.entry_points]
console_scripts =
negromate = negromate.songs.commands:main
negromate.commands =
songs = negromate.songs.commands.songs
config = negromate.songs.commands.config
thumbnail = negromate.songs.commands.thumbnail
2020-11-01 11:51:14 +01:00
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support. Removing this line (or setting universal to 0) will prevent
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels
# universal=1