| @@ -1,4 +1,5 @@ | |||||
| #  | #  | ||||
|    | |||||
| ## About the project | ## About the project | ||||
| @@ -86,4 +87,4 @@ Pluto 11:46 15:59 11:46 | |||||
| Moon phase: First Quarter | Moon phase: First Quarter | ||||
| Note: All the hours are given in UTC. | Note: All the hours are given in UTC. | ||||
| ``` | |||||
| ``` | |||||
| @@ -20,7 +20,7 @@ from skyfield.api import Loader | |||||
| from .data import Star, Planet, Satellite | from .data import Star, Planet, Satellite | ||||
| VERSION = '0.1.0' | |||||
| VERSION = '0.1.1' | |||||
| MONTHS = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] | MONTHS = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] | ||||
| @@ -18,5 +18,11 @@ setup( | |||||
| keywords='kosmorro astronomy ephemerides ephemeris', | keywords='kosmorro astronomy ephemerides ephemeris', | ||||
| packages=find_packages(), | packages=find_packages(), | ||||
| scripts=['kosmorro'], | scripts=['kosmorro'], | ||||
| install_requires=['skyfield>=1.13.0,<2.0.0', 'tabulate', 'numpy>=1.17.0,<2.0.0'] | |||||
| install_requires=['skyfield>=1.13.0,<2.0.0', 'tabulate', 'numpy>=1.17.0,<2.0.0'], | |||||
| classifiers=[ | |||||
| 'Development Status :: 3 - Alpha', | |||||
| 'Operating System :: POSIX :: Linux', | |||||
| 'Environment :: Console', | |||||
| 'Topic :: Scientific/Engineering :: Astronomy' | |||||
| ] | |||||
| ) | ) | ||||