├── .gitignore ├── .python-version ├── LICENSE ├── README.rst ├── doc └── nudged-logo.png ├── nudged ├── __init__.py ├── estimate.py ├── transform.py └── version.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_estimate.py ├── test_transform.py └── test_version.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/.python-version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/README.rst -------------------------------------------------------------------------------- /doc/nudged-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/doc/nudged-logo.png -------------------------------------------------------------------------------- /nudged/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/nudged/__init__.py -------------------------------------------------------------------------------- /nudged/estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/nudged/estimate.py -------------------------------------------------------------------------------- /nudged/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/nudged/transform.py -------------------------------------------------------------------------------- /nudged/version.py: -------------------------------------------------------------------------------- 1 | version = '0.3.1' 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [unittest] 2 | start-dir = tests 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/tests/test_estimate.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelpale/nudged-py/HEAD/tox.ini --------------------------------------------------------------------------------