Skip to content

Commit

Permalink
Apply template v.1.4.6 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu committed Jan 4, 2024
1 parent 420e765 commit 0ba5bcb
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .copier-answers.yml
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v1.4.4
_commit: v1.4.6
_src_path: gh:lincc-frameworks/python-project-template
author_email: lincc-frameworks-team@lists.lsst.org
author_name: LINCC Frameworks
Expand All @@ -14,5 +14,4 @@ preferred_linter: pylint
project_license: BSD
project_name: hipscat-import
project_organization: astronomy-commons
use_gitlfs: none
use_isort: true
4 changes: 4 additions & 0 deletions .git_archival.txt
@@ -0,0 +1,4 @@
node: $Format:%H$
node-date: $Format:%cI$
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
ref-names: $Format:%D$
24 changes: 24 additions & 0 deletions .gitattributes
@@ -0,0 +1,24 @@
# For explanation of this file and uses see
# https://git-scm.com/docs/gitattributes
# https://developer.lsst.io/git/git-lfs.html#using-git-lfs-enabled-repositories
# https://lincc-ppt.readthedocs.io/en/latest/practices/git-lfs.html
#
# Used by https://github.com/lsst/afwdata.git
# *.boost filter=lfs diff=lfs merge=lfs -text
# *.dat filter=lfs diff=lfs merge=lfs -text
# *.fits filter=lfs diff=lfs merge=lfs -text
# *.gz filter=lfs diff=lfs merge=lfs -text
#
# apache parquet files
# *.parq filter=lfs diff=lfs merge=lfs -text
#
# sqlite files
# *.sqlite3 filter=lfs diff=lfs merge=lfs -text
#
# gzip files
# *.gz filter=lfs diff=lfs merge=lfs -text
#
# png image files
# *.png filter=lfs diff=lfs merge=lfs -text

.git_archival.txt export-subst
11 changes: 6 additions & 5 deletions docs/conf.py
Expand Up @@ -8,8 +8,6 @@
import sys
from importlib.metadata import version

import autoapi

# Define path to the code to be documented **relative to where conf.py (this file) is kept**
sys.path.insert(0, os.path.abspath("../src/"))

Expand All @@ -34,9 +32,12 @@
templates_path = []
exclude_patterns = ["_build", "**.ipynb_checkpoints"]

master_doc = "index" # This assumes that sphinx-build is called from the root directory
html_show_sourcelink = False # Remove 'view source code' from top of page (for html, not python)
add_module_names = False # Remove namespaces from class/method signatures
# This assumes that sphinx-build is called from the root directory
master_doc = "index"
# Remove 'view source code' from top of page (for html, not python)
html_show_sourcelink = False
# Remove namespaces from class/method signatures
add_module_names = False

autoapi_type = "python"
autoapi_dirs = ["../src"]
Expand Down
2 changes: 0 additions & 2 deletions docs/requirements.txt
Expand Up @@ -5,5 +5,3 @@ nbsphinx
ipython
jupytext
jupyter
matplotlib
numpy
5 changes: 0 additions & 5 deletions pyproject.toml
Expand Up @@ -49,15 +49,10 @@ dev = [
"nbsphinx", # Used to integrate Python notebooks into Sphinx documentation
"ipykernel", # Also used in building notebooks into Sphinx
"ipython", # Also used in building notebooks into Sphinx
"matplotlib", # Used in sample notebook intro_notebook.ipynb
"ray", # Used for dask-on-ray testing.
"types-PyYAML", # type stubs for pyyaml
]

[metadata]
long_description = { file = "README.md" }
url = "https://github.com/astronomy-commons/hipscat-import"

[build-system]
requires = [
"setuptools>=62", # Used to build and package the Python project
Expand Down

0 comments on commit 0ba5bcb

Please sign in to comment.