Browse Source

Update metadata, update readme

tags/v0.1.1
Jérôme Deuchnord 4 years ago
parent
commit
8356b65abf
No known key found for this signature in database GPG Key ID: BC6F3C345B7D33B0
3 changed files with 10 additions and 3 deletions
  1. +2
    -1
      README.md
  2. +1
    -1
      kosmorrolib/core.py
  3. +7
    -1
      setup.py

+ 2
- 1
README.md View File

@@ -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.
```
```

+ 1
- 1
kosmorrolib/core.py View File

@@ -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']



+ 7
- 1
setup.py View File

@@ -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'
]
)

Loading…
Cancel
Save