pylunar 0.7.1__tar.gz → 0.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pylunar-0.7.1 → pylunar-0.7.2}/HISTORY.rst +5 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/PKG-INFO +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/helpers.py +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/lunar_feature.py +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/moon_info.py +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/PKG-INFO +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/SOURCES.txt +1 -1
- {pylunar-0.7.1 → pylunar-0.7.2}/.pre-commit-config.yaml +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/AUTHORS.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/CONTRIBUTING.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/LICENSE +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/MANIFEST.in +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/Makefile +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/README.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/Makefile +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/authors.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/conf.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/contributing.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/history.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/index.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/installation.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/make.bat +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/docs/usage.rst +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/pyproject.toml +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/scripts/startup.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/setup.cfg +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/__init__.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/data/lunar.db +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/lunar_feature_container.py +0 -0
- /pylunar-0.7.1/src/pylunar/types.py → /pylunar-0.7.2/src/pylunar/pkg_types.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/dependency_links.txt +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/requires.txt +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/top_level.txt +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tests/__init__.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_helpers.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_lunar_feature.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_lunar_feature_container.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_moon_info.py +0 -0
- {pylunar-0.7.1 → pylunar-0.7.2}/tox.ini +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pylunar
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.2
|
4
4
|
Summary: Information for completing the Astronomical League's Lunar and Lunar II observing programs.
|
5
5
|
Author-email: Michael Reuter <mareuternh@gmail.com>
|
6
6
|
Project-URL: Documentation, http://pylunar.readthedocs.io
|
@@ -16,7 +16,7 @@ __all__ = ["mjd_to_date_tuple", "tuple_to_string"]
|
|
16
16
|
|
17
17
|
import ephem
|
18
18
|
|
19
|
-
from .
|
19
|
+
from .pkg_types import DateTimeTuple, DmsCoordinate
|
20
20
|
|
21
21
|
|
22
22
|
def mjd_to_date_tuple(mjd: float, round_off: bool = False) -> DateTimeTuple:
|
@@ -24,7 +24,7 @@ import pytz
|
|
24
24
|
|
25
25
|
from .helpers import mjd_to_date_tuple, tuple_to_string
|
26
26
|
from .lunar_feature import LunarFeature
|
27
|
-
from .
|
27
|
+
from .pkg_types import DateTimeTuple, DmsCoordinate, MoonPhases
|
28
28
|
|
29
29
|
|
30
30
|
class PhaseName(Enum):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pylunar
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.2
|
4
4
|
Summary: Information for completing the Astronomical League's Lunar and Lunar II observing programs.
|
5
5
|
Author-email: Michael Reuter <mareuternh@gmail.com>
|
6
6
|
Project-URL: Documentation, http://pylunar.readthedocs.io
|
@@ -23,7 +23,7 @@ src/pylunar/helpers.py
|
|
23
23
|
src/pylunar/lunar_feature.py
|
24
24
|
src/pylunar/lunar_feature_container.py
|
25
25
|
src/pylunar/moon_info.py
|
26
|
-
src/pylunar/
|
26
|
+
src/pylunar/pkg_types.py
|
27
27
|
src/pylunar.egg-info/PKG-INFO
|
28
28
|
src/pylunar.egg-info/SOURCES.txt
|
29
29
|
src/pylunar.egg-info/dependency_links.txt
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|