Skip to content

Commit

Permalink
fixes for repo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerapritchard committed May 2, 2024
1 parent ec6d695 commit 7c90a45
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions docs/apidoc.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
API documentation
===============================================================
.. automodule:: tssc
.. automodule:: lksearch
:members:

.. autoclass:: tssc.MASTSearch
.. autoclass:: lksearch.MASTSearch
:members:

.. autoclass:: tssc.KeplerSearch
.. autoclass:: lksearch.KeplerSearch
:members:

.. autoclass:: tssc.K2Search
.. autoclass:: lksearch.K2Search
:members:

.. autoclass:: tssc.TESSSearch
.. autoclass:: lksearch.TESSSearch
:members:
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
print(sys.path)
sys.path.insert(0, os.path.abspath(".."))
sys.path.insert(0, os.path.abspath("../src/"))
sys.path.insert(0, os.path.abspath("../src/tssc"))
sys.path.insert(0, os.path.abspath("../src/lksearch"))
sys.path.insert(0, os.path.abspath("../.."))
sys.path.insert(0, os.path.abspath("../../src/"))
sys.path.insert(0, os.path.abspath("../../src/tssc"))
sys.path.insert(0, os.path.abspath("../../src/lksearch"))

project = "lksearch"
copyright = "2024, TESS Science Support Center"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "A helpful little package to search for TESS/Kepler/K2 data"
authors = ["TESS SCience Support Center <[email protected]>"]
license = "MIT"
readme = "README.md"
readme = "README.rst"

[tool.poetry.dependencies]
python = "^3.9"
Expand Down

0 comments on commit 7c90a45

Please sign in to comment.