File tree 9 files changed +36
-19
lines changed
9 files changed +36
-19
lines changed Original file line number Diff line number Diff line change 4
4
- " 3.4"
5
5
sudo : required
6
6
cache : pip
7
- install :
8
- - " pip install --upgrade pip"
9
- - " pip install -r requirements/production.txt"
10
- - " pip install -r requirements/testing.txt"
11
- - " pip install ."
7
+ install : pip install --upgrade pip tox coveralls
12
8
before_script :
13
9
- wget -q http://johnvansickle.com/ffmpeg/builds/ffmpeg-git-64bit-static.tar.xz
14
10
- tar -xf ffmpeg-*.tar.xz -v
Original file line number Diff line number Diff line change 1
1
include README.rst LICENSE tox.ini .coveragerc runtests.py
2
2
3
- recursive-include requirements *
3
+ recursive-include encode/tests *.txt
4
4
recursive-include encode/locale *
5
5
recursive-include encode/static *
6
6
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ django-encode
12
12
.. image :: https://img.shields.io/badge/license-MIT-blue.svg
13
13
:target: https://raw.githubusercontent.com/collab-project/django-encode/master/LICENSE
14
14
15
+
15
16
Installation
16
17
------------
17
18
@@ -22,6 +23,13 @@ Use pip_ to install the download and install the package from PyPi_::
22
23
Or checkout the source code from Github _::
23
24
24
25
git clone https://github.com/collab-project/django-encode.git
26
+ cd django-encode
27
+ pip install -e .
28
+
29
+ The dependency ``python-video-converter `` is not available on PyPi and needs to be installed
30
+ manually::
31
+
32
+ pip install -e git+https://github.com/thijstriemstra/python-video-converter.git#egg=python-video-converter
25
33
26
34
27
35
Documentation
Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ Development
3
3
4
4
After checkout, install dependencies and package in active virtualenv::
5
5
6
- $ pip install -r requirements/development.txt
7
- $ pip install -r requirements/testing.txt
8
- $ pip install -r requirements/production.txt
6
+ $ pip -e git+https://github.com/thijstriemstra/python-video-converter.git#egg=python-video-converter
9
7
$ pip install -e .
8
+ $ pip install -r encode/tests/requirements.txt
10
9
11
10
12
11
Testing
@@ -24,7 +23,7 @@ Running tests without Tox_::
24
23
25
24
$ ./runtests.py
26
25
27
- Directly with `django-admin `::
26
+ Directly with `` django-admin ` `::
28
27
29
28
$ django-admin test --settings=encode.tests.settings encode
30
29
@@ -53,5 +52,19 @@ version `django.mo`::
53
52
$ django-admin compilemessages --settings=encode.tests.settings
54
53
55
54
55
+ Documentation
56
+ -------------
57
+
58
+ Install Sphinx::
59
+
60
+ $ pip install sphinx>=1.1.0
61
+
62
+ Change to the ``doc `` directory and run::
63
+
64
+ $ make html
65
+
66
+ The resulting HTML output can be found in the ``doc/_build/html `` directory.
67
+
68
+
56
69
.. _Tox : http://tox.testrun.org/
57
70
.. _coverage.py : http://nedbatchelder.com/code/coverage/
File renamed without changes.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -58,5 +58,10 @@ def run_tests(self):
58
58
author = 'Collab' ,
59
59
author_email = 'info@collab.nl' ,
60
60
url = 'http://github.com/collab-project/django-encode' ,
61
- license = 'MIT'
61
+ license = 'MIT' ,
62
+ install_requires = [
63
+ 'celery>=3.1' ,
64
+ 'django-appconf>=0.6' ,
65
+ 'django-queued-storage>=0.8.0'
66
+ ]
62
67
)
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ envlist = py27,py34
10
10
skipsdist = False
11
11
12
12
[base]
13
- deps = -r{toxinidir}/requirements/production.txt
14
- -r{toxinidir}/requirements/testing.txt
13
+ deps = Django
14
+ -egit+https://github.com/thijstriemstra/python-video-converter.git# egg=python-video-converter
15
+ -r{toxinidir}/encode/tests/requirements.txt
15
16
16
17
17
18
[testenv]
You can’t perform that action at this time.
0 commit comments