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.
 
 

58 lines
2.1 KiB

  1. #!/usr/bin/env python3
  2. # Kosmorrolib - The Library To Compute Your Ephemerides
  3. # Copyright (C) 2021 Jérôme Deuchnord <jerome@deuchnord.fr>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as
  7. # published by the Free Software Foundation, either version 3 of the
  8. # License, or (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. import pathlib
  18. from setuptools import setup, find_packages
  19. from kosmorrolib.__version__ import __version__
  20. HERE = pathlib.Path(__file__).parent
  21. README = (HERE / "README.md").read_text()
  22. setup(
  23. name="kosmorrolib",
  24. version=__version__,
  25. author="Jérôme Deuchnord",
  26. author_email="jerome@deuchnord.fr",
  27. url="http://kosmorro.space/lib",
  28. license="AGPL-v3",
  29. description="A library to computes the ephemerides.",
  30. long_description=README,
  31. long_description_content_type="text/markdown",
  32. keywords=["kosmorro", "astronomy", "ephemerides", "ephemeris"],
  33. packages=["kosmorrolib"],
  34. install_requires=[
  35. "skyfield>=1.21.0,<2.0.0",
  36. "skyfield-data>=3.0.0,<4.0.0",
  37. "numpy>=1.17.0,<2.0.0",
  38. "python-dateutil",
  39. ],
  40. classifiers=[
  41. "Development Status :: 5 - Production/Stable",
  42. "Intended Audience :: Developers",
  43. "Intended Audience :: Education",
  44. "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
  45. "Topic :: Software Development :: Libraries :: Python Modules",
  46. "Programming Language :: Python :: 3.7",
  47. "Programming Language :: Python :: 3.8",
  48. "Programming Language :: Python :: 3.9",
  49. "Topic :: Scientific/Engineering :: Astronomy",
  50. ],
  51. python_requires=">=3.7",
  52. )