pyproject.toml 712 B

123456789101112131415161718192021222324
  1. [build-system]
  2. requires = ["setuptools", "pybind11", "numpy"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "scattnlay"
  6. version = "2.4"
  7. requires-python = ">=3.8"
  8. authors = [
  9. {name = "Ovidio Peña", email = "ovidio@bytesfall.com"},
  10. {name = "Konstantin Ladutenko", email = "k.ladutenko@metalab.ifmo.ru"},
  11. ]
  12. maintainers = [
  13. {name = "Ovidio Peña", email = "ovidio@bytesfall.com"}
  14. ]
  15. description = "Calculation of the scattering of EM radiation by a multilayered sphere"
  16. readme = "README.md"
  17. license = {file = "LICENSE"}
  18. keywords = ["Light scattering"]
  19. classifiers = [
  20. "Development Status :: 5 - Production/Stable",
  21. "Programming Language :: C++",
  22. "Programming Language :: Python"
  23. ]