forked from whipper-team/whipper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 638 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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', 'The Whipper Team'],
maintainer=['The Whipper Team'],
url='https://github.com/whipper-team/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']),
],
)