-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (34 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·39 lines (34 loc) · 1.05 KB
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
with open('LICENSE') as f:
license = f.read()
with open('README.rst') as f:
readme = f.read()
setup(
name='Youtube Closed Captions',
version='0.2.0',
description='Download closed captions from Youtube',
long_description=readme,
author='Mike Lay',
author_email='mike@mkly.io',
license=license,
packages=find_packages(exclude=('test', 'test.*')),
install_requires=[
'yt-dlp>=2023.1.1',
'pycaption>=1.1.0',
'beautifulsoup4>=4.9.0',
'cssutils>=2.0.0',
'lxml>=4.9.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: Apache Software License'
]
)