-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
74 lines (71 loc) · 2.11 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import (
find_packages,
setup,
)
with open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='lord-of-the-clips',
version='0.1.12',
license='MIT',
description=(
'🎥✂️🔗 Video downloader, trimmer, and merger using the terminal.'
' Supports YouTube, Facebook, Reddit, Twitter, TikTok, Instagram, LinkedIn, 9GAG, etc.'
' Downloads/trims at multiple points. Merges multiple clips.'
),
long_description=long_description,
long_description_content_type='text/markdown',
author='Ranel Padon',
author_email='ranel.padon@gmail.com',
url='https://github.com/ranelpadon/lord-of-the-clips',
python_requires='>=3.7',
packages=find_packages(),
include_package_data=True,
install_requires=open('requirements.txt').read().splitlines(),
entry_points={
'console_scripts': [
'lotc = lotc.main:cli',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
],
keywords=[
'video',
'downloader',
'trimmer',
'snipper',
'cutter',
'merger',
'splicer',
'cli',
'terminal',
'youtube',
'facebook',
'reddit',
'twitter',
'multiple',
'click',
'rich',
'movie',
'snip',
'clip',
'subclip',
],
platforms=['Windows', 'macOS', 'Linux'],
)