-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
32 lines (31 loc) · 826 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
31
32
from setuptools import setup
setup(
name='bdfrtohtml',
packages=['bdfrtohtml'],
version='1.4.1',
description='Convert the output of BDFR to HTML',
author='BlipRanger',
author_email='blipranger@shrubbery.co',
url='https://github.com/BlipRanger/bdfr-html',
download_url='https://github.com/BlipRanger/bdfr-html/releases/tag/v1.3.0',
keywords=['bdfr', 'reddit', 'downloader'],
classifiers=[],
package_data={
"": ["templates/*.html", "templates/*.css"],
},
install_requires=[
'click==7.1.2',
'Markdown==3.3.4',
'appdirs>=1.4.4',
'bs4>=0.0.1',
'dict2xml>=1.7.0',
'ffmpeg-python>=0.2.0',
'praw>=7.2.0',
'pyyaml>=5.4.1',
'requests>=2.25.1',
'youtube-dl>=2021.3.14',
'bdfr==2.2',
'jinja2==3.0.0',
'pillow>=8.0.0'
]
)