Skip to content

Commit

Permalink
Merge 103c53a into 048c931
Browse files Browse the repository at this point in the history
  • Loading branch information
copyninja committed May 1, 2014
2 parents 048c931 + 103c53a commit e53d89e
Show file tree
Hide file tree
Showing 188 changed files with 672 additions and 393 deletions.
11 changes: 11 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[run]
omit =
*/python?.?/*
*/lib-python/?.?/*.py
*/lib_pypy/_*.py
*/site-packages/nose/*
*/pypy/*

exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: python
python:
- "2.7"
# - "3.3"
install:
- pip install -r requirements.txt
- pip install -r requirements-modules.txt
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install -r requirements-py2.txt; fi
- pip install coveralls
- pip install flake8
script: make travis
after_success: coveralls
notifications:
email:
- silpa-discuss@nongnu.org
irc:
channels:
- "irc.freenode.net#silpa"
on_success: change
on_failure: change
use_notice: true
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
travis:
nosetests -s --with-coverage --cover-package=silpa
flake8 silpa tests

clean:
find . -name "*.pyc" -exec rm -vf {} \;
find -name __pycache__ -deete

tox:
tox

flake:
flake8 silpa tests
4 changes: 4 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
SILPA
==========

[![Build Status](https://travis-ci.org/Project-SILPA/Silpa-Flask.svg?branch=development)](https://travis-ci.org/Project-SILPA/Silpa-Flask)
[![Coverage Status](https://coveralls.io/repos/Project-SILPA/Silpa-Flask/badge.png?branch=development)](https://coveralls.io/r/Project-SILPA/Silpa-Flask?branch=development)

SILPA - Indian Language computing platform which provides a web interface
for different Indian language computing python modules. This is hosted at

Expand Down
2 changes: 0 additions & 2 deletions core/__init__.py

This file was deleted.

102 changes: 0 additions & 102 deletions core/jsonrpchandler.py

This file was deleted.

55 changes: 0 additions & 55 deletions core/modulehelper.py

This file was deleted.

36 changes: 0 additions & 36 deletions loadconfig.py

This file was deleted.

2 changes: 1 addition & 1 deletion requirements-modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-e git+https://github.com/Project-SILPA/Soundex.git#egg=soundex
-e git+https://github.com/Project-SILPA/silpa-common.git#egg=silpa_common
-e git+https://github.com/Project-SILPA/shingling.git#egg=shingling
-e git+https://github.com/Project-SILPA/scriptrender.git#egg=scriptrender
#-e git+https://github.com/Project-SILPA/scriptrender.git#egg=scriptrender
-e git+https://github.com/Project-SILPA/payyans.git#egg=payyans
-e git+https://github.com/Project-SILPA/normalizer.git#egg=normalizer
-e git+https://github.com/Project-SILPA/inexactsearch.git#egg=inexactsearch
Expand Down
1 change: 1 addition & 0 deletions requirements-py2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
configparser
112 changes: 0 additions & 112 deletions silpa.py

This file was deleted.

7 changes: 7 additions & 0 deletions silpa/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
'''
SILPA
~~~~~
SILPA application package
'''
Loading

0 comments on commit e53d89e

Please sign in to comment.