├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── automerge.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── rubric ├── __init__.py └── files │ ├── .editorconfig │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── Makefile │ ├── README.md │ ├── __init__.py │ ├── pyproject.toml │ ├── requirements-dev.txt │ └── requirements.txt └── tests ├── __init__.py ├── test_api.py └── test_cli.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/requirements.txt -------------------------------------------------------------------------------- /rubric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/__init__.py -------------------------------------------------------------------------------- /rubric/files/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/.editorconfig -------------------------------------------------------------------------------- /rubric/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/.gitignore -------------------------------------------------------------------------------- /rubric/files/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/.pre-commit-config.yaml -------------------------------------------------------------------------------- /rubric/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/Makefile -------------------------------------------------------------------------------- /rubric/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/README.md -------------------------------------------------------------------------------- /rubric/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rubric/files/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/pyproject.toml -------------------------------------------------------------------------------- /rubric/files/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rubric/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/rubric/files/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/rubric/HEAD/tests/test_cli.py --------------------------------------------------------------------------------