├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── wheels.yml ├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── appveyor.yml ├── appveyor_env.cmd ├── benchmark ├── microbench.py ├── telco-bench.b └── telco_fractions.py ├── dedup_wheels.py ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src ├── formatfloat_testcases.txt ├── quicktions.pyx └── test_fractions.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | plugins = Cython.Coverage 3 | source = src 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/appveyor_env.cmd -------------------------------------------------------------------------------- /benchmark/microbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/benchmark/microbench.py -------------------------------------------------------------------------------- /benchmark/telco-bench.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/benchmark/telco-bench.b -------------------------------------------------------------------------------- /benchmark/telco_fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/benchmark/telco_fractions.py -------------------------------------------------------------------------------- /dedup_wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/dedup_wheels.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/setup.py -------------------------------------------------------------------------------- /src/formatfloat_testcases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/src/formatfloat_testcases.txt -------------------------------------------------------------------------------- /src/quicktions.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/src/quicktions.pyx -------------------------------------------------------------------------------- /src/test_fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/src/test_fractions.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoder/quicktions/HEAD/tox.ini --------------------------------------------------------------------------------