A library that computes the ephemerides.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

40 lines
1.1 KiB

  1. [tool.poetry]
  2. name = "kosmorrolib"
  3. version = "1.0.10"
  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.21"
  22. numpy = [
  23. { version = "<1.25", python = "3.8.*" },
  24. { version = "^1.25", python = ">=3.9,<3.13" },
  25. ]
  26. skyfield-data = ">=3,<6"
  27. python-dateutil = "^2.8"
  28. [tool.poetry.group.dev.dependencies]
  29. black = "^23.1"
  30. parameterized = "^0.9.0"
  31. coverage = "^6.1.2"
  32. coveralls = "^3.3.1"
  33. [build-system]
  34. requires = ["poetry-core>=1.0.0"]
  35. build-backend = "poetry.core.masonry.api"