-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 881 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 881 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name = 'podqueue',
version = '0.1.9',
description = 'Automate the archiving of podcast feeds, including show notes and images.',
long_description_content_type = "text/markdown",
long_description = README,
license = 'MIT',
packages = find_packages(),
author = 'Tyler Quinlivan',
author_email = 'hello@tylerquinlivan.com',
keywords = ['podcast', 'podqueue', 'archive', 'download'],
url = 'https://github.com/tquin/podqueue',
download_url = 'https://pypi.org/project/podqueue/',
include_package_data = True
)
install_requires = [
'feedparser>=6.0.8',
'requests>=2.22.0'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)