├── .codecov.yml ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── pyproject.toml ├── setup.cfg ├── src └── betterspy │ ├── __about__.py │ ├── __init__.py │ ├── cli.py │ └── main.py ├── tests ├── data │ └── gre_343_343_crg.mm └── test_betterspy.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: no 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/betterspy/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/src/betterspy/__about__.py -------------------------------------------------------------------------------- /src/betterspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/src/betterspy/__init__.py -------------------------------------------------------------------------------- /src/betterspy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/src/betterspy/cli.py -------------------------------------------------------------------------------- /src/betterspy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/src/betterspy/main.py -------------------------------------------------------------------------------- /tests/data/gre_343_343_crg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/tests/data/gre_343_343_crg.mm -------------------------------------------------------------------------------- /tests/test_betterspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/tests/test_betterspy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/betterspy/HEAD/tox.ini --------------------------------------------------------------------------------