From b4d199083d881b61c64afa83083d1f9ba2da8604 Mon Sep 17 00:00:00 2001 From: rickybassom Date: Mon, 8 Aug 2022 00:37:16 +0100 Subject: [PATCH] Package -> library --- README.rst | 4 ++-- docs/data_directory.rst | 2 +- docs/data_schemas.rst | 2 +- pyproject.toml | 2 +- tests/__init__.py | 2 +- tests/integration/__init__.py | 2 +- tests/unit/__init__.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index a8ed6a9..c64ecbf 100644 --- a/README.rst +++ b/README.rst @@ -35,9 +35,9 @@ GMN Python API :target: https://github.com/psf/black :alt: Black -Python package for accessing open `Global Meteor Network`_ (GMN) meteor trajectory `data`_. +Python library for accessing open `Global Meteor Network`_ (GMN) meteor trajectory `data`_. Global meteor data is generated using a network of low-light cameras pointed towards the night sky. -Meteor properties (radiants, orbits, magnitudes and masses) are produced by the GMN and are available through this package. +Meteor properties (radiants, orbits, magnitudes and masses) are produced by the GMN and are available through this library. .. image:: https://raw.githubusercontent.com/gmn-data-platform/gmn-python-api/main/screenshot.png :alt: Data screenshot diff --git a/docs/data_directory.rst b/docs/data_directory.rst index 8162bce..4b5a046 100644 --- a/docs/data_directory.rst +++ b/docs/data_directory.rst @@ -1,7 +1,7 @@ Data Directory ============== -The GMN provides a `Data Directory`_ of trajectory summary CSV data. The gmn-python-api package allows you to read from the directory (see `data_directory API reference section`_ for function and variable details). +The GMN provides a `Data Directory`_ of trajectory summary CSV data. The gmn-python-api library allows you to read from the directory (see `data_directory API reference section`_ for function and variable details). Example 1: diff --git a/docs/data_schemas.rst b/docs/data_schemas.rst index 457a029..6978826 100644 --- a/docs/data_schemas.rst +++ b/docs/data_schemas.rst @@ -1,7 +1,7 @@ Data Schemas ============ -GMN data fields are accessible through Pandas DataFrames produced by the gmn-python-api package. See the `meteor_summary_schema API reference section`_ for function and variable details. +GMN data fields are accessible through Pandas DataFrames produced by the gmn-python-api library. See the `meteor_summary_schema API reference section`_ for function and variable details. Accessing meteor trajectory summary fields code example: diff --git a/pyproject.toml b/pyproject.toml index fe53669..bbd7729 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gmn-python-api" -version = "0.0.6" +version = "0.0.7" description = "GMN Python API" authors = ["Ricky Bassom "] license = "MIT" diff --git a/tests/__init__.py b/tests/__init__.py index a71da1d..86736a0 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1 @@ -"""Test suite for the gmn_python_api package.""" +"""Test suite for the gmn_python_api library.""" diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index 9e48799..7e73551 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -1 +1 @@ -"""Integration tests for the gmn_python_api package.""" +"""Integration tests for the gmn_python_api library.""" diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index eac58e7..31829c1 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,4 +1,4 @@ -"""Unit tests for the gmn_python_api package.""" +"""Unit tests for the gmn_python_api library.""" from typing import Optional from unittest import mock