pyproject.toml
1 [build-system] 2 requires = ["maturin>=1.7,<2.0"] 3 build-backend = "maturin" 4 5 [project] 6 name = "emtk" 7 requires-python = ">=3.8" 8 classifiers = [ 9 "Programming Language :: Rust", 10 "Programming Language :: Python :: Implementation :: CPython", 11 "Programming Language :: Python :: Implementation :: PyPy", 12 ] 13 dynamic = ["version"] 14 15 [tool.maturin] 16 module-name = "emtk._internal_emtk_py"