Files
whipper-gui/setup.py
Frederik “Freso” S. Olesen 43f3fbe818 Add initial AppStream metainfo.xml file
AppStream metainfo.xml files are used to provide "metadata necessary for
an application-centric view on package repositories." This is an initial
and somewhat basic one written from scratch for whipper.

See https://www.freedesktop.org/wiki/Distributions/AppStream/
and https://www.freedesktop.org/software/appstream/docs/
2018-10-28 17:55:28 +01:00

22 lines
666 B
Python

from setuptools import setup, find_packages
from whipper import __version__ as whipper_version
setup(
name="whipper",
version=whipper_version,
description="a secure cd ripper preferring accuracy over speed",
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
maintainer=['Joe Lametta', 'Samantha Baldwin'],
url='https://github.com/JoeLametta/whipper',
license='GPL3',
packages=find_packages(),
entry_points={
'console_scripts': [
'whipper = whipper.command.main:main'
]
},
data_files=[
('share/metainfo', ['com.github.whipper_team.Whipper.metainfo.xml']),
],
)