-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
28 lines (24 loc) · 883 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
import os
from setuptools import setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
version=read("version"),
name="podcast_downloader",
author="Dawid Plocki",
author_email="dawid.plocki@gmail.com",
description="The script for downloading the recent mp3 from given RSS channels",
long_description_content_type="text/markdown",
long_description=read("README.md"),
packages=["podcast_downloader"],
install_requires=["feedparser"],
url="https://github.com/dplocki/podcast-downloader",
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
],
python_requires=">=3.6",
)