├── .git-blame-ignore-revs ├── .github ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .pep8speaks.yml ├── LICENCE ├── Makefile ├── README.rst ├── codecov.yml ├── pyproject.toml ├── requirements └── dev.txt ├── simpleeval.py └── test_simpleeval.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Reformat with black + isort 2 | 4eaf5609e8b544c63704b7547fe6a3e1896d7cd1 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8speaks.yml: -------------------------------------------------------------------------------- 1 | pycodestyle: 2 | max-line-length: 100 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/codecov.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /simpleeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/simpleeval.py -------------------------------------------------------------------------------- /test_simpleeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danthedeckie/simpleeval/HEAD/test_simpleeval.py --------------------------------------------------------------------------------