-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
**/__pycache__ | ||
*.egg-info | ||
**/.ipynb_checkpoints | ||
*.sif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
############################ | ||
# Pre-commit configuration # | ||
############################ | ||
|
||
# Install via `pip install pre-commit` | ||
|
||
# This is run as a precondition to commits, run manually via `pre-commit run` | ||
|
||
# When adding new hooks, it may make sense to once run | ||
# `pre-commit run --all-files` as by default only changed files are checked | ||
|
||
# Automatically run before every commit via once running `pre-commit install` | ||
|
||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 23.1.0 | ||
hooks: | ||
- id: black | ||
description: The uncompromising code formatter | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
name: isort (python) | ||
- id: isort | ||
name: isort (cython) | ||
types: [cython] | ||
- id: isort | ||
name: isort (pyi) | ||
types: [pyi] | ||
- repo: https://github.com/nbQA-dev/nbQA | ||
rev: 1.6.3 | ||
hooks: | ||
- id: nbqa-black | ||
- id: nbqa-pyupgrade | ||
args: [--py36-plus] | ||
- id: nbqa-isort | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-yaml | ||
description: Check yaml files for parseable syntax | ||
- id: check-added-large-files | ||
description: Prevent large files from being committed | ||
- id: check-merge-conflict | ||
description: Check for files that contain merge conflict strings | ||
- id: check-symlinks | ||
description: Check for symlinks which do not point to anything | ||
- id: trailing-whitespace | ||
description: Trim trailing whitespaces | ||
- id: end-of-file-fixer | ||
description: Fix empty lines at ends of files | ||
- id: detect-private-key | ||
description: Detects the presence of private keys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[project] | ||
name = "inverse-kinematics-sbi" | ||
version = "0.0.1" | ||
dependencies = [ | ||
"numpy", | ||
"scipy", | ||
"matplotlib", | ||
] | ||
description = "Inverse kinematics benchmarks for simulation-based inference" | ||
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = ["py39", "py310"] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
line_length = 120 | ||
multi_line_output = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
contourpy==1.2.1 | ||
# via matplotlib | ||
cycler==0.12.1 | ||
# via matplotlib | ||
fonttools==4.51.0 | ||
# via matplotlib | ||
kiwisolver==1.4.5 | ||
# via matplotlib | ||
matplotlib==3.9.0 | ||
# via inverse-kinematics-sbi (pyproject.toml) | ||
numpy==1.26.4 | ||
# via | ||
# contourpy | ||
# inverse-kinematics-sbi (pyproject.toml) | ||
# matplotlib | ||
# scipy | ||
packaging==24.0 | ||
# via matplotlib | ||
pillow==10.3.0 | ||
# via matplotlib | ||
pyparsing==3.1.2 | ||
# via matplotlib | ||
python-dateutil==2.9.0.post0 | ||
# via matplotlib | ||
scipy==1.13.0 | ||
# via inverse-kinematics-sbi (pyproject.toml) | ||
six==1.16.0 | ||
# via python-dateutil |