diff --git a/README.md b/README.md index 67480bb..b01502a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # ![Kosmorro](assets/png/kosmorro-logo.png) +![PyPI - Status](https://img.shields.io/pypi/status/kosmorro) ![PyPI](https://img.shields.io/pypi/v/kosmorro) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kosmorro) ## About the project @@ -86,4 +87,4 @@ Pluto 11:46 15:59 11:46 Moon phase: First Quarter Note: All the hours are given in UTC. -``` \ No newline at end of file +``` diff --git a/kosmorrolib/core.py b/kosmorrolib/core.py index b18dbd8..cc86ce6 100644 --- a/kosmorrolib/core.py +++ b/kosmorrolib/core.py @@ -20,7 +20,7 @@ from skyfield.api import Loader 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'] diff --git a/setup.py b/setup.py index 3f1a762..136726d 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,11 @@ setup( keywords='kosmorro astronomy ephemerides ephemeris', packages=find_packages(), 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' + ] )