-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·43 lines (38 loc) · 1.67 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python3
# Copyright 2010-2021 Mads Michelsen ([email protected])
# This file is part of Poca.
# Poca is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License,
# or (at your option) any later version.
"""Poca setup"""
from distutils.core import setup
setup(
name='poca',
version='1.1',
license='GPL3',
description='A fast and customizable command line podcast client',
long_description=('A fast and customizable command line podcast client'),
author='Mads Michelsen',
author_email='[email protected]',
url='https://github.com/brokkr/poca',
#download_url='https://github.com/brokkr/poca/archive/v1.0',
scripts=['src/scripts/poca', 'src/scripts/poca-subscribe'],
packages=['poca'],
package_dir={'poca': 'src/poca'},
data_files=[('share/man/man1', ["man/poca.1"]),
('share/man/man1', ["man/poca-subscribe.1"])],
requires=['feedparser', 'lxml', 'mutagen', 'requests'],
install_requires=['feedparser', 'lxml', 'mutagen', 'requests'],
provides=['poca'],
platforms=['POSIX'],
keywords=['podcast', 'client', 'aggregator', 'cli'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Sound/Audio']
)