-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (40 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·43 lines (40 loc) · 1.04 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
39
40
41
42
43
#!/usr/bin/env python3
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="rvidmaker",
version="0.0.1",
description="Automatically generates narrated videos of Reddit articles",
author="Jaclyn Brockschmidt",
author_email="jcbrockschmidt@gmail.com",
url="https://github.com/jcbrockschmidt/rvidmaker",
install_requires=[
"apiclient==1.0.4",
"better-profanity>=0.6.1",
"ffmpeg-python>=0.2.0",
"google-api-python-client>=1.12.8",
"gtts>=2.1.1",
"httplib2==0.18.1",
"moviepy>=1.0.3",
"nltk>=3.5",
"oauth2client==4.1.3",
"Pillow>=7.2.0",
"praw>=7.1.4",
"rake-nltk>=1.0.4",
"textblob>=0.15.3",
"toml>=0.10.2",
],
packages=[
"rvidmaker",
"rvidmaker.editor",
"rvidmaker.readers",
"rvidmaker.suites",
"rvidmaker.thumbnails",
"rvidmaker.uploaders",
"rvidmaker.videos",
"rvidmaker.voices",
],
)