Files
whipper-gui/setup.py
Frederik “Freso” S. Olesen a9bb51a0cf Specify supported version(s) of Python in setup.py
In preparation for dropping Python 2.7 support[1], this specifies
versions that *are* compatible with Python 2.7, so anyone installing via
pip (if we end up publishing to PyPI) will get the proper version.

See https://packaging.python.org/guides/dropping-older-python-versions/

[1] https://github.com/whipper-team/whipper/issues/78

Signed-off-by: Frederik “Freso” S. Olesen <freso.dk@gmail.com>
2019-03-01 11:12:14 +01:00

23 lines
655 B
Python

from setuptools import setup, find_packages
setup(
name="whipper",
use_scm_version=True,
description="a secure cd ripper preferring accuracy over speed",
author=['Thomas Vander Stichele', 'The Whipper Team'],
maintainer=['The Whipper Team'],
url='https://github.com/whipper-team/whipper',
license='GPL3',
python_requires='>=2.7,<3',
packages=find_packages(),
setup_requires=['setuptools_scm'],
entry_points={
'console_scripts': [
'whipper = whipper.command.main:main'
]
},
data_files=[
('share/metainfo', ['com.github.whipper_team.Whipper.metainfo.xml']),
],
)