Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ doc/
etc/
include/
lib/
man/
man/
dist/
67 changes: 0 additions & 67 deletions Ffmpeg.py

This file was deleted.

40 changes: 0 additions & 40 deletions ImageUploader.py

This file was deleted.

84 changes: 0 additions & 84 deletions ImdbParser.py

This file was deleted.

8 changes: 8 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
setup.py
bin/pythonbits
pythonbits/Ffmpeg.py
pythonbits/ImageUploader.py
pythonbits/movie.py
pythonbits/Screenshots.py
pythonbits/TvdbParser.py
pythonbits/__init__.py
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
PYTHON=python2
NOSE=/usr/local/bin/nosetests-2.7
PIP=/usr/local/bin/pip2

all: clean dist install

dist:
$(PYTHON) setup.py sdist

install:
-pip2 uninstall pythonbits -y
pip2 install dist/Pythonbits-2.0.0.tar.gz

clean:
-rm -r dist/

test:
$(NOSE) --with-progressive --logging-clear-handlers
99 changes: 0 additions & 99 deletions MultipartPostHandler.py

This file was deleted.

8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
#### A Python description generator for movies and TV shows

## Install
1. Put all files in your $PATH, and make sure pythonbits.py is executable

2. Use pip (https://github.com/pypa/pip) to install dependencies: pip install -r requirements
$ [sudo] pip install https://github.com/Ichabond/Pythonbits/archive/master.zip
$ pythonbits --help

Python 2 is required. The correct version of pip may be called `pip2` on some platforms.

## Usage
Use pythonbits.py --help to get a usage overview
Use `pythonbits --help` to get a usage overview
Loading