-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
30 lines (26 loc) · 970 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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname, exists, join
from setuptools import find_packages, setup
long_description = None
if exists("README.rst"):
with open("README.rst") as file:
long_description = file.read()
install_reqs = [req for req in
open(abspath(join(dirname(__file__), 'requirements.txt')))]
setup(
name='m3u8-To-MP4',
version="0.1.12",
description="Python downloader for saving m3u8 video to local MP4 file.",
long_description_content_type="text/x-rst",
long_description=long_description,
author='songs18',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
platforms=['all'],
url="https://github.com/songs18/m3u8_To_MP4",
zip_safe=False,
include_package_data=True,
install_requires=install_reqs,
python_requires='>=3.7'
)