Pārlūkot izejas kodu

Update deps with version info; insert an OS-specific import path.

pull/24/head
Ben Kurtovic pirms 11 gadiem
vecāks
revīzija
a1269a72b8
2 mainītis faili ar 10 papildinājumiem un 4 dzēšanām
  1. +4
    -4
      README.md
  2. +6
    -0
      build.py

+ 4
- 4
README.md Parādīt failu

@@ -7,8 +7,8 @@ Not much else to say at this stage. Move along, now.
Dependencies
============

* [earwigbot](https://github.com/earwig/earwigbot)
* [mako](http://www.makotemplates.org/)
* [oursql](http://packages.python.org/oursql/)
* [uglifyjs](https://github.com/mishoo/UglifyJS/)
* [earwigbot](https://github.com/earwig/earwigbot) >= 0.1
* [mako](http://www.makotemplates.org/) >= 0.7.2
* [oursql](http://packages.python.org/oursql/) >= 0.9.3.1
* [uglifyjs](https://github.com/mishoo/UglifyJS/) >= 1.3.3
* [uglifycss](https://github.com/fmarcia/UglifyCSS/)

+ 6
- 0
build.py Parādīt failu

@@ -12,6 +12,12 @@ import os
import sys

os.chdir("..")
plat = sys.platform
if plat.startswith("sunos"):
plat = "solaris"
elif plat.startswith("linux"):
plat = "linux"
sys.path.insert(0, os.path.expanduser("~/.local/" + plat + "/lib/python2.7/site-packages"))
sys.path.insert(0, ".")

from mako.template import Template


Notiek ielāde…
Atcelt
Saglabāt