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.
 
 

36 lines
1008 B

  1. [tool.poetry]
  2. name = "kosmorrolib"
  3. version = "1.0.6"
  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.7,<3.11"
  21. skyfield = "^1.21"
  22. skyfield-data = ">=3,<5"
  23. python-dateutil = "^2.8"
  24. [tool.poetry.dev-dependencies]
  25. black = "^22.1"
  26. parameterized = "^0.8.1"
  27. coverage = "^6.1.2"
  28. coveralls = "^3.3.1"
  29. [build-system]
  30. requires = ["poetry-core>=1.0.0"]
  31. build-backend = "poetry.core.masonry.api"