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.
 
 

38 lines
1.0 KiB

  1. [tool.poetry]
  2. name = "kosmorrolib"
  3. version = "1.0.1"
  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. include = ["CHANGELOG.md"]
  13. classifiers = [
  14. "Development Status :: 5 - Production/Stable",
  15. "Topic :: Scientific/Engineering :: Astronomy",
  16. "Topic :: Software Development :: Libraries :: Python Modules",
  17. "Intended Audience :: Developers",
  18. "Intended Audience :: Education",
  19. ]
  20. [tool.poetry.dependencies]
  21. python = "^3.7"
  22. skyfield = "^1.21"
  23. skyfield-data = "^3.0"
  24. numpy = "^1.17"
  25. python-dateutil = "^2.8"
  26. [tool.poetry.dev-dependencies]
  27. black = "^21.11b1"
  28. parameterized = "^0.8.1"
  29. coverage = "^6.1.2"
  30. coveralls = "^3.3.1"
  31. [build-system]
  32. requires = ["poetry-core>=1.0.0"]
  33. build-backend = "poetry.core.masonry.api"