A library that computes the ephemerides.
 
 

41 lines
1.1 KiB

  1. [tool.poetry]
  2. name = "kosmorrolib"
  3. version = "1.0.12"
  4. authors = ["Jérôme Deuchnord <jerome@deuchnord.fr>"]
  5. homepage = "https://kosmorro.space/lib"
  6. repository = "https://github.com/Kosmorro/lib"
  7. documentation = "https://kosmorro.space/lib/doc"
  8. keywords = ["kosmorro", "astronomy", "ephemerides", "ephemeris"]
  9. license = "AGPL-3.0-or-later"
  10. description = "A library to computes the ephemerides."
  11. readme = "README.md"
  12. classifiers = [
  13. "Development Status :: 5 - Production/Stable",
  14. "Topic :: Scientific/Engineering :: Astronomy",
  15. "Topic :: Software Development :: Libraries :: Python Modules",
  16. "Intended Audience :: Developers",
  17. "Intended Audience :: Education",
  18. ]
  19. [tool.poetry.dependencies]
  20. python = "^3.8"
  21. skyfield = "^1.49"
  22. numpy = [
  23. { version = "<1.25", python = "3.8.*" },
  24. { version = "<2.1", python = "3.9.*" },
  25. { version = "^2.1", python = "^3.10" },
  26. ]
  27. skyfield-data = "*"
  28. python-dateutil = "^2.8"
  29. [tool.poetry.group.dev.dependencies]
  30. black = ">23.1,<25.0"
  31. parameterized = "^0.9.0"
  32. coverage = "^6.1.2"
  33. coveralls = "^3.3.1"
  34. [build-system]
  35. requires = ["poetry-core>=1.0.0"]
  36. build-backend = "poetry.core.masonry.api"