├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ └── everything-else.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEFAULT_LOGIC.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── docs ├── Makefile ├── conf.py ├── generated │ ├── modules.rst │ └── steppy.rst └── index.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── steppy ├── __init__.py ├── adapter.py ├── base.py └── utils.py └── tests ├── __init__.py ├── conftest.py ├── steppy_test_utils.py ├── test_adapter.py └── test_base.py /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/everything-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/.github/ISSUE_TEMPLATE/everything-else.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEFAULT_LOGIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/DEFAULT_LOGIC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/generated/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/docs/generated/modules.rst -------------------------------------------------------------------------------- /docs/generated/steppy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/docs/generated/steppy.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/setup.py -------------------------------------------------------------------------------- /steppy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steppy/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/steppy/adapter.py -------------------------------------------------------------------------------- /steppy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/steppy/base.py -------------------------------------------------------------------------------- /steppy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/steppy/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/steppy_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/tests/steppy_test_utils.py -------------------------------------------------------------------------------- /tests/test_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/tests/test_adapter.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minerva-ml/steppy/HEAD/tests/test_base.py --------------------------------------------------------------------------------