Skip to content

Commit

Permalink
adding changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
RayVentura committed Aug 4, 2023
1 parent 00bcefb commit de8ead7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ dist
build
setup.py
test.ipynb
setup
.venv/
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CHANGES

## Version 0.0.2
- Implemented the content_translation_engine; a multilingual video dubbing content engine. The source can be found at shortGPT/engine/content_translation_engine.py.
- Implemented the new EdgeTTS voice module; it can be found at shortgpt/audio/edge_voice_module.
- Added documentation which can be found under docs/.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ yt-dlp
torch
torchaudio
### whisper timestamped
git+https://github.com/linto-ai/whisper-timestamped
whisper-timestamped
protobuf==3.20.0
pillow==9.0.0
moviepy==1.0.3
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = '0.0.1'
VERSION = '0.0.2'
DESCRIPTION = 'Automating video and short content creation with AI'
LONG_DESCRIPTION = 'A powerful tool for automating content creation. It simplifies video creation, footage sourcing, voiceover synthesis, and editing tasks.'

# Setting up

setup(
name="shortgpt",
version=VERSION,
Expand All @@ -31,11 +31,13 @@
'tinymongo',
'proglog',
'yt-dlp',
'torch',
'torch',
'whisper-timestamped',
'torchaudio',
'pillow==9.0.0',
'protobuf==3.20.0',
'langchain',
'moviepy',
'edge-tts',
'moviepy==1.0.3',
'termcolor',
'progress',
'questionary',
Expand Down

0 comments on commit de8ead7

Please sign in to comment.