Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

44 wiersze
1.2 KiB

  1. #!/usr/bin/env python3
  2. import pathlib
  3. from setuptools import setup, find_packages
  4. from _kosmorro.__version__ import __version__
  5. HERE = pathlib.Path(__file__).parent
  6. README = (HERE / "README.md").read_text()
  7. setup(
  8. name="kosmorro",
  9. version=__version__,
  10. author="Jérôme Deuchnord",
  11. author_email="jerome@deuchnord.fr",
  12. url="http://kosmorro.space",
  13. license="CeCILL-v2.1",
  14. description="A program to compute the ephemerides.",
  15. long_description=README,
  16. long_description_content_type="text/markdown",
  17. keywords="kosmorro astronomy ephemerides ephemeris",
  18. packages=find_packages(),
  19. scripts=["kosmorro"],
  20. include_package_data=True,
  21. data_files=[
  22. ("man/man1", ["manpage/kosmorro.1"]),
  23. ("man/man7", ["manpage/kosmorro.7"]),
  24. ],
  25. install_requires=[
  26. "kosmorrolib",
  27. "tabulate",
  28. "termcolor",
  29. "python-dateutil",
  30. ],
  31. classifiers=[
  32. "Development Status :: 3 - Alpha",
  33. "Operating System :: POSIX :: Linux",
  34. "Operating System :: MacOS :: MacOS X",
  35. "Environment :: Console",
  36. "Topic :: Scientific/Engineering :: Astronomy",
  37. ],
  38. python_requires=">=3.7",
  39. )