diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 693c899..0fc4198 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -36,7 +36,7 @@ jobs: pip install poetry poetry install --with dev - name: Test with pytest - run: poetry run pytest + run: poetry run pytest src tests diff --git a/LICENSE b/LICENSE index 3b5b462..6f9817c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 tylerapritchard +Copyright (c) 2024 TESS Science Support Center Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/README.rst b/README.rst similarity index 97% rename from docs/README.rst rename to README.rst index a546c5b..bbd8dd4 100644 --- a/docs/README.rst +++ b/README.rst @@ -6,6 +6,10 @@ :target: https://badge.fury.io/py/lksearch :alt: PyPI version +.. image:: https://img.shields.io/badge/documentation-live-blue.svg + :target: https://lightkurve.github.io/lksearch/ + :alt: Documentation + ######## lksearch ######## diff --git a/docs/Contact.rst b/docs/Contact.rst index 4533ea6..d340a13 100644 --- a/docs/Contact.rst +++ b/docs/Contact.rst @@ -1,3 +1,3 @@ -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: \ No newline at end of file diff --git a/docs/GetInvolved.rst b/docs/GetInvolved.rst index 73e82d3..3970c2f 100644 --- a/docs/GetInvolved.rst +++ b/docs/GetInvolved.rst @@ -1,3 +1,3 @@ -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: \ No newline at end of file diff --git a/docs/HowtoCite.rst b/docs/HowtoCite.rst index 48bc005..c653665 100644 --- a/docs/HowtoCite.rst +++ b/docs/HowtoCite.rst @@ -1,3 +1,3 @@ -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: diff --git a/docs/Quickstart.rst b/docs/Quickstart.rst index 1f590e5..a19d7e2 100644 --- a/docs/Quickstart.rst +++ b/docs/Quickstart.rst @@ -1,3 +1,3 @@ -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 10142da..99eb929 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,11 +2,11 @@ lksearch ######## -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: -.. include:: README.rst +.. include:: ../README.rst :start-after: :end-before: diff --git a/pyproject.toml b/pyproject.toml index 526c39e..b455bd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "lksearch" -version = "0.1.0" +version = "1.0.0" description = "A helpful little package to search for TESS/Kepler/K2 data" -authors = ["TESS SCience Support Center "] +authors = ["TESS Science Support Center "] license = "MIT" readme = "README.rst" diff --git a/src/lksearch/version.py b/src/lksearch/version.py index 0571dd8..13fab8c 100644 --- a/src/lksearch/version.py +++ b/src/lksearch/version.py @@ -1,3 +1,3 @@ # Store the version number in a separate file # so that we can read it from setup.py without importing the package -__version__ = "0.1.0dev" +__version__ = "1.0.0"