├── .bump.cfg.nt ├── .coveragerc ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .parameters ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── README.rst ├── clean ├── doc ├── .parameters ├── .static │ └── css │ │ └── custom.css ├── Makefile ├── accessories.rst ├── api.rst ├── conf.py ├── examples.rst ├── flicker.svg ├── index.rst ├── releases.rst ├── requirements.txt ├── spectrum-zoomed.png ├── user.rst └── wave.png ├── examples ├── bitcoin.py ├── clean ├── crypto │ ├── crypto │ ├── crypto-fixed │ └── holdings ├── cryptocurrency ├── delta-sigma │ ├── clean │ ├── delta-sigma.smpl │ └── gen-plot ├── dram.py ├── ds-sim │ ├── clean │ ├── dout.wave │ ├── ds-sim │ ├── gen-plot │ ├── run │ ├── vin.wave │ └── vout.wave ├── dus │ └── dus ├── remind ├── timer.py ├── timing.py ├── tvm ├── unicode.py └── vt.py ├── pyproject.toml ├── pytest.ini ├── quantiphy ├── __init__.py ├── __init__.pyi ├── py.typed ├── quantiphy.py └── quantiphy.pyi ├── tests ├── .parameters ├── test_binary.py ├── test_constants.py ├── test_doctests.py ├── test_extract.py ├── test_format.py ├── test_misc.py ├── test_namespace.py ├── test_preferred_units.py ├── test_quantity.nt ├── test_quantity.py ├── test_quantity_functions.py ├── test_unit_conversion.py └── test_unit_conversion2.py └── tox.ini /.bump.cfg.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.bump.cfg.nt -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.gitignore -------------------------------------------------------------------------------- /.parameters: -------------------------------------------------------------------------------- 1 | doc/.parameters -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/README.rst -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/clean -------------------------------------------------------------------------------- /doc/.parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/.parameters -------------------------------------------------------------------------------- /doc/.static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/.static/css/custom.css -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/accessories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/accessories.rst -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/flicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/flicker.svg -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/releases.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/spectrum-zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/spectrum-zoomed.png -------------------------------------------------------------------------------- /doc/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/user.rst -------------------------------------------------------------------------------- /doc/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/doc/wave.png -------------------------------------------------------------------------------- /examples/bitcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/bitcoin.py -------------------------------------------------------------------------------- /examples/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/clean -------------------------------------------------------------------------------- /examples/crypto/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/crypto/crypto -------------------------------------------------------------------------------- /examples/crypto/crypto-fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/crypto/crypto-fixed -------------------------------------------------------------------------------- /examples/crypto/holdings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/crypto/holdings -------------------------------------------------------------------------------- /examples/cryptocurrency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/cryptocurrency -------------------------------------------------------------------------------- /examples/delta-sigma/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/delta-sigma/clean -------------------------------------------------------------------------------- /examples/delta-sigma/delta-sigma.smpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/delta-sigma/delta-sigma.smpl -------------------------------------------------------------------------------- /examples/delta-sigma/gen-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/delta-sigma/gen-plot -------------------------------------------------------------------------------- /examples/dram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/dram.py -------------------------------------------------------------------------------- /examples/ds-sim/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/clean -------------------------------------------------------------------------------- /examples/ds-sim/dout.wave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/dout.wave -------------------------------------------------------------------------------- /examples/ds-sim/ds-sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/ds-sim -------------------------------------------------------------------------------- /examples/ds-sim/gen-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/gen-plot -------------------------------------------------------------------------------- /examples/ds-sim/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/run -------------------------------------------------------------------------------- /examples/ds-sim/vin.wave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/vin.wave -------------------------------------------------------------------------------- /examples/ds-sim/vout.wave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/ds-sim/vout.wave -------------------------------------------------------------------------------- /examples/dus/dus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/dus/dus -------------------------------------------------------------------------------- /examples/remind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/remind -------------------------------------------------------------------------------- /examples/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/timer.py -------------------------------------------------------------------------------- /examples/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/timing.py -------------------------------------------------------------------------------- /examples/tvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/tvm -------------------------------------------------------------------------------- /examples/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/unicode.py -------------------------------------------------------------------------------- /examples/vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/examples/vt.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/pytest.ini -------------------------------------------------------------------------------- /quantiphy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/quantiphy/__init__.py -------------------------------------------------------------------------------- /quantiphy/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/quantiphy/__init__.pyi -------------------------------------------------------------------------------- /quantiphy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quantiphy/quantiphy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/quantiphy/quantiphy.py -------------------------------------------------------------------------------- /quantiphy/quantiphy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/quantiphy/quantiphy.pyi -------------------------------------------------------------------------------- /tests/.parameters: -------------------------------------------------------------------------------- 1 | ../doc/.parameters -------------------------------------------------------------------------------- /tests/test_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_binary.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_doctests.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_format.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_namespace.py -------------------------------------------------------------------------------- /tests/test_preferred_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_preferred_units.py -------------------------------------------------------------------------------- /tests/test_quantity.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_quantity.nt -------------------------------------------------------------------------------- /tests/test_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_quantity.py -------------------------------------------------------------------------------- /tests/test_quantity_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_quantity_functions.py -------------------------------------------------------------------------------- /tests/test_unit_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_unit_conversion.py -------------------------------------------------------------------------------- /tests/test_unit_conversion2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tests/test_unit_conversion2.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/quantiphy/HEAD/tox.ini --------------------------------------------------------------------------------