Loading project.clj +1 −1 Original line number Diff line number Diff line (defproject python/lein-template "0.9.3" (defproject python/lein-template "0.9.4" :description "lein template for a python project" :repositories [["snapshots" {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots" Loading src/leiningen/new/python/setup.py +2 −2 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ def requirements_file_to_list(fn="requirements.txt"): """read a requirements file and create a list that can be used in setup. """ with open(fn, 'rb') as f: with open(fn, 'r') as f: return [x.rstrip() for x in list(f) if x and not x.startswith('#')] Loading @@ -25,7 +25,7 @@ setup( packages=find_packages(), install_requires=requirements_file_to_list(), dependency_links=[ "http://apt.yygamedev.com/python/" "https://emacsos.com/python/packages/" ], entry_points={ # 'console_scripts': [ Loading Loading
project.clj +1 −1 Original line number Diff line number Diff line (defproject python/lein-template "0.9.3" (defproject python/lein-template "0.9.4" :description "lein template for a python project" :repositories [["snapshots" {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots" Loading
src/leiningen/new/python/setup.py +2 −2 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ def requirements_file_to_list(fn="requirements.txt"): """read a requirements file and create a list that can be used in setup. """ with open(fn, 'rb') as f: with open(fn, 'r') as f: return [x.rstrip() for x in list(f) if x and not x.startswith('#')] Loading @@ -25,7 +25,7 @@ setup( packages=find_packages(), install_requires=requirements_file_to_list(), dependency_links=[ "http://apt.yygamedev.com/python/" "https://emacsos.com/python/packages/" ], entry_points={ # 'console_scripts': [ Loading