-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 973 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='pypodget',
version='0.1.1',
author='Martin Koehler',
author_email='[email protected]',
scripts=['bin/pypodget'],
packages=['pypodget'],
url='http://github.com/grisuthedraong/pypodget',
license=('LICENSE.txt',),
description='A small tool to download podcasts from RSS feeds.',
long_description=open('README.md').read(),
python_requires='>3.7.0',
install_requires=[
"requests >= 2.22",
"tqdm >= 4.30",
"eyed3 >= 0.8.10"
],
package_data ={'': ['pods.ini.example']},
include_package_data=True,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
]
)