├── .github └── workflows │ ├── ci.yaml │ └── publish-to-pypi.yaml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE.txt ├── README.md ├── ci ├── requirements-3.10.yml ├── requirements-3.11.yml ├── requirements-3.12.yml ├── requirements-3.8.yml └── requirements-3.9.yml ├── docs ├── index.md └── requirements.txt ├── mkdocs.yml ├── nco ├── __init__.py ├── custom.py └── nco.py ├── pyproject.toml ├── setup.cfg └── tests ├── __init__.py ├── conftest.py ├── test_nco.py └── test_nco_examples.py /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/.github/workflows/publish-to-pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/README.md -------------------------------------------------------------------------------- /ci/requirements-3.10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/ci/requirements-3.10.yml -------------------------------------------------------------------------------- /ci/requirements-3.11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/ci/requirements-3.11.yml -------------------------------------------------------------------------------- /ci/requirements-3.12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/ci/requirements-3.12.yml -------------------------------------------------------------------------------- /ci/requirements-3.8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/ci/requirements-3.8.yml -------------------------------------------------------------------------------- /ci/requirements-3.9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/ci/requirements-3.9.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs~=1.4.2 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nco/__init__.py: -------------------------------------------------------------------------------- 1 | from .nco import Nco, NCOException 2 | -------------------------------------------------------------------------------- /nco/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/nco/custom.py -------------------------------------------------------------------------------- /nco/nco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/nco/nco.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_nco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/tests/test_nco.py -------------------------------------------------------------------------------- /tests/test_nco_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nco/pynco/HEAD/tests/test_nco_examples.py --------------------------------------------------------------------------------