Skip to content

Commit

Permalink
Install requirements with pip instead with setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ogarcia committed Nov 22, 2016
1 parent 7dc0fcf commit 65b6a7b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ git clone https://github.com/ogarcia/sysdweb.git
virtualenv3 ./sysdweb-venv
source ./sysdweb-venv/bin/activate
cd sysdweb
pip install -r requirements.txt
python setup.py install
```

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bottle >= 0.12.10
dbus-python >= 1.2.4
dbus-python
systemd-python
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ def read(fname):
'sysdweb = sysdweb.main:main'
]
},
install_requires = [
"bottle>=0.12.10",
"dbus-python>=1.2.4",
"systemd-python"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
Expand Down
4 changes: 0 additions & 4 deletions sysdweb/templates/static/css/sysdweb.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ a:hover {
margin-bottom: 0
}

pre {
margin-bottom: 0
}

.table > tbody > tr > td {
vertical-align: middle;
}
4 changes: 2 additions & 2 deletions sysdweb/templates/views/journal.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
<small>{{hostname or 'sysdweb'}}</small></h1>
</div>
<div>
<pre id="journal">
<pre id="journal">
% for line in journal:
{{line}}
% end
</pre>
</pre>
</div>
</div>
</body>
Expand Down

0 comments on commit 65b6a7b

Please sign in to comment.