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.
 
 
 
 

23 lines
709 B

  1. from kosmorrolib.core import VERSION
  2. from setuptools import setup, find_packages
  3. import pathlib
  4. HERE = pathlib.Path(__file__).parent
  5. README = (HERE / 'README.md').read_text()
  6. setup(
  7. name='kosmorro',
  8. version=VERSION,
  9. author='Jérôme Deuchnord',
  10. author_email='jerome@deuchnord.fr',
  11. url='https://kosmorro.astronewbie.space',
  12. license='AGPL-3.0',
  13. description='A program that computes the ephemerides.',
  14. long_description=README,
  15. long_description_content_type='text/markdown',
  16. keywords='kosmorro astronomy ephemerides ephemeris',
  17. packages=find_packages(),
  18. scripts=['kosmorro'],
  19. install_requires=['skyfield>=1.13.0,<2.0.0', 'tabulate', 'numpy>=1.17.0,<2.0.0']
  20. )