├── .github └── workflows │ └── wheel.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── jenkspy ├── __init__.py ├── core.py └── src │ ├── _jenks.c │ └── jenks.pyx ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── test.json └── test_jenks.py /.github/workflows/wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/.github/workflows/wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft tests 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/README.md -------------------------------------------------------------------------------- /jenkspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/jenkspy/__init__.py -------------------------------------------------------------------------------- /jenkspy/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/jenkspy/core.py -------------------------------------------------------------------------------- /jenkspy/src/_jenks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/jenkspy/src/_jenks.c -------------------------------------------------------------------------------- /jenkspy/src/jenks.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/jenkspy/src/jenks.pyx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/tests/test.json -------------------------------------------------------------------------------- /tests/test_jenks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthh/jenkspy/HEAD/tests/test_jenks.py --------------------------------------------------------------------------------