pyproject.toml 659 B

1234567891011121314151617181920212223
  1. [project]
  2. name = "cx_libtranslate"
  3. version = "1.0.0"
  4. authors = [
  5. { name = "Cixo Develop", email = "[email protected]" }
  6. ]
  7. description = "This is library for translating apps."
  8. readme = "README.md"
  9. requires-python = ">=3.7"
  10. classifiers = [
  11. "Programming Language :: Python :: 3",
  12. "Operating System :: OS Independent"
  13. ]
  14. license = "MIT"
  15. license-files = [ "LICENSE" ]
  16. [project.urls]
  17. Homepage = "https://git.cixoelectronic.pl/cixo-electronic/cx-libtranslate-python"
  18. Issues = "https://git.cixoelectronic.pl/cixo-electronic/cx-libtranslate-python/issues"
  19. [build-system]
  20. requires = [ "setuptools >= 77.0.3" ]
  21. build-backend = "setuptools.build_meta"