Skip to content

Commit 6fa8673

Browse files
committedMay 9, 2015
upgrade requirements and use them in setup.py
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 6299b22 commit 6fa8673

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed
 

Diff for: ‎requirements.txt

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
1-
git+https://github.com/getnikola/nikola#egg=Nikola
1+
Nikola>=7.4.1
22
git+https://github.com/nvie/rq.git#egg=rq
33
blinker==1.3
4-
docopt==0.6.1
4+
docopt==0.6.2
55
docutils==0.12
6-
doit==0.26.0
6+
doit==0.28.0
77
Flask==0.10.1
8-
Flask-Bcrypt==0.6.0
8+
Flask-Bcrypt==0.6.2
99
Flask-Login==0.2.11
1010
Flask-WTF==0.11
1111
itsdangerous==0.24
1212
Jinja2==2.7.3
13-
Logbook==0.8.1
14-
lxml==3.4.1
15-
Mako==1.0.0
13+
Logbook==0.9.1
14+
lxml==3.4.4
15+
Mako==1.0.1
1616
MarkupSafe==0.23
17-
natsort==3.5.1
17+
natsort==3.5.6
1818
passlib==1.6.2
19-
Pillow==2.7.0
19+
Pillow==2.8.1
2020
py-bcrypt==0.4
21-
Pygments==2.0.1
21+
Pygments==2.0.2
2222
pyinotify==0.9.5
2323
PyRSS2Gen==1.1
24-
python-dateutil==2.4.0
25-
pytz==2014.10
24+
python-bcrypt==0.3.1
25+
python-dateutil==2.4.2
26+
pytz==2015.2
2627
redis==2.10.3
2728
six==1.9.0
2829
Unidecode==0.4.17
2930
webassets==0.10.1
30-
Werkzeug==0.9.6
31+
Werkzeug==0.10.4
3132
WTForms==2.0.2
32-
Yapsy==1.10.423
33+
Yapsy==1.11.23

Diff for: ‎setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import io
44
from setuptools import setup
55

6+
with open('requirements.txt', 'r') as fh:
7+
dependencies = [l.strip() for l in fh][2:]
8+
69
setup(name='coil',
710
version='1.2.0',
811
description='A user-friendly CMS frontend for Nikola.',
@@ -23,6 +26,7 @@
2326
'Programming Language :: Python :: 3.3',
2427
'Programming Language :: Python :: 3.4'],
2528
packages=['coil'],
29+
install_requires=dependencies,
2630
include_package_data=True,
2731
entry_points={
2832
'console_scripts': [

0 commit comments

Comments
 (0)
Please sign in to comment.