voirs-ffi 0.1.0-alpha.3

C/Python FFI bindings for VoiRS speech synthesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3
"""
Setup script for VoiRS FFI Python bindings.

This script provides compatibility with legacy build systems and tools
that expect a setup.py file. The actual build configuration is defined
in pyproject.toml using maturin as the build backend.
"""

from setuptools import setup

if __name__ == "__main__":
    setup(
        name="voirs-ffi",
        zip_safe=False,
        # All other configuration is in pyproject.toml
    )