├── .github └── workflows │ ├── Linux.yml │ ├── Windows.yml │ └── macOS.yml ├── .gitignore ├── LICENSE ├── README.md ├── manylinux-cross.sh ├── manylinux.sh └── pyproject.toml /.github/workflows/Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/.github/workflows/Linux.yml -------------------------------------------------------------------------------- /.github/workflows/Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/.github/workflows/Windows.yml -------------------------------------------------------------------------------- /.github/workflows/macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/.github/workflows/macOS.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/README.md -------------------------------------------------------------------------------- /manylinux-cross.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/manylinux-cross.sh -------------------------------------------------------------------------------- /manylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/manylinux.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/fasttext-wheel/HEAD/pyproject.toml --------------------------------------------------------------------------------