├── .gitignore └── README.markdown /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | build 4 | paperwork.conf 5 | dist/ 6 | paperwork.egg-info/ 7 | .idea 8 | *.traineddata 9 | *.app/ 10 | .flatpak-builder/ 11 | repo/ 12 | *.flatpak 13 | venv*/ 14 | *.pyo 15 | _version.py 16 | 17 | # Byte-compiled / optimized / DLL files 18 | __pycache__/ 19 | *.py[cod] 20 | *$py.class 21 | 22 | # C extensions 23 | *.so 24 | 25 | # Distribution / packaging 26 | .Python 27 | env/ 28 | build/ 29 | develop-eggs/ 30 | dist/ 31 | downloads/ 32 | eggs/ 33 | .eggs/ 34 | lib/ 35 | lib64/ 36 | parts/ 37 | sdist/ 38 | var/ 39 | *.egg-info/ 40 | .installed.cfg 41 | *.egg 42 | 43 | # PyInstaller 44 | # Usually these files are written by a python script from a template 45 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 46 | *.manifest 47 | *.spec 48 | 49 | # Installer logs 50 | pip-log.txt 51 | pip-delete-this-directory.txt 52 | 53 | # Unit test / coverage reports 54 | htmlcov/ 55 | .tox/ 56 | .coverage 57 | .coverage.* 58 | .cache 59 | nosetests.xml 60 | coverage.xml 61 | *,cover 62 | .hypothesis/ 63 | 64 | # Translations 65 | *.mo 66 | *.pot 67 | 68 | # Django stuff: 69 | *.log 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | #Ipython Notebook 78 | .ipynb_checkpoints 79 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | # Paperwork - [openpaper.work](https://openpaper.work/) 2 | 3 | Moved to [Gnome's Gitlab](https://gitlab.gnome.org/World/OpenPaperwork/paperwork). 4 | --------------------------------------------------------------------------------