Skip to content

Commit

Permalink
Merge between refactor_base and master, done !. Readme Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
aenriquerg committed Aug 17, 2018
2 parents 02a5c57 + a38ca4d commit 89bc7e1
Show file tree
Hide file tree
Showing 70 changed files with 3,405 additions and 1,790 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.out
.idea/
parsetab.py
*.py.bak

# Byte-compiled / optimized / DLL files
__pycache__/
Expand All @@ -10,6 +11,7 @@ __pycache__/

#Deveplopment
.env/
.env3/
.vagrant/
*.css
*.xhtml
Expand All @@ -18,9 +20,11 @@ __pycache__/
# C extensions
*.so

# Distribution / packaging
# Distribution / packaging / test
.Python
.pytest_cache/
env/
venv/
build/
develop-eggs/
dist/
Expand Down
6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
language: python
python:
- "2.7"
# - "2.7"
- "3.6"
before_install:
- pip install pytest pytest-cov
- pip install coveralls coverage
install:
- pip install -r requirements.txt
- pip install -r requirements-test.txt
script:
- coverage run -m py.test
- coverage report -m
after_success:
- coveralls
- coveralls
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
David Casas <blindtexunal@gmail.com>
Alexis Rodriguez <blindtexunal@gmail.com>
Justo Lopez <blindtexunal@gmail.com>
829 changes: 669 additions & 160 deletions LICENSE

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# MANIFEST.in
exclude .gitignore
exclude .coverage
exclude .travis.yml
include README.rst
include requirements.txt
include setup.cfg
include dicts/spanish.json
include blindtex/lang/dicts/*
prune .cache
prune .git
prune build
prune dist
recursive-exclude *.egg-info *
recursive-include tests *
29 changes: 16 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,31 @@
-----------
[![Build Status](https://travis-ci.org/blindtex/blindtex.svg?branch=master)](https://travis-ci.org/blindtex/blindtex) [![Coverage Status](https://coveralls.io/repos/github/blindtex/blindtex/badge.svg?branch=master)](https://coveralls.io/github/blindtex/blindtex?branch=master)

El objetivo del proyecto BlindTeX es mejorar la accesibilidad de los documentos matemáticos
escritos en (La)TeX , para esto se intenta mejorar la capacidad del documento de transmitir
la información matemática plasmada hacia el usuario por medio de pistas auditivas o textuales.
## ¿ En qué creemos ?

En construcción
El equipo BlindTex cree la posibilidad de eliminar barreras que impiden el acceso al conocimiento científico, de manera que personas con discapacidad visual logren mayor autonomía a nivel personal, académico y laboral. Más información [aquí](http://blindtex.org/)

## Modo de uso
```
blindtex --help
```
## ¿ Qué es Blindtex ?

BlindTex es una herramienta de accesibilidad que realiza conversión de ecuaciones escritas en formato latex a lenguaje natural.

## Instalación
TODO
```
$ pip3 install blindtex
```

## Documentación
TODO
La conversión de usa como se muetra a continuación:
```
$ blindtex -e '\frac{2}{3+4}'
fracción 2 sobre 3 más 4 finFracción
```

## Testing

```
# run the tests
pytest
python3 -m pytest
```
##Licencia
##Licencia
TODO
21 changes: 0 additions & 21 deletions blindtex/converter/converter.py

This file was deleted.

176 changes: 0 additions & 176 deletions blindtex/converter/dictionary.py

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Accents.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Arrows.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/BinaryOperators.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/BinaryRelations.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Delimiters.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Dots.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/LargeOperators.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Ordinary.json

This file was deleted.

1 change: 0 additions & 1 deletion blindtex/converter/dicts/Styles.json

This file was deleted.

0 comments on commit 89bc7e1

Please sign in to comment.