Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pre-commit configuration and pyproject.toml and update gitignore #111

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ arm64
/SBML/ex9.csv
/SBML/hr.csv
/test_suite/semantic/
/test_suite/SBML_test_suite/
/test_suite/semantic_tests_with_sedml_and_graphs.v*.zip*
.vscode
/BioModels/cache
Expand Down
50 changes: 50 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Formatting shouldn't be applied to auto generated files,
# or files taken verbatim from external resources.
exclude: |-
(?x)^(
LEMS/.*|
Brian/.*|
NEURON/.*|
NeuroML2/.*|
tellurium/simple.py*|
.*\.xml$|
.*\.sedml$|
.*\.sbml$|
.*\.omex$|
.*\.json$|
.*\.md$|
)$

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.1
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/pappasam/toml-sort
rev: v0.24.2
hooks:
- id: toml-sort-fix
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
args:
- --quote-props=as-needed
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-case-conflict
- id: check-docstring-first
- id: check-merge-conflict
- id: check-toml
- id: end-of-file-fixer
- id: mixed-line-ending
args:
- --fix=lf
- id: trailing-whitespace

- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "SBMLShowcase"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"pyNeuroML[annotations]",
"python-libsedml",
"tellurium",
"pymetadata>=0.4.2",
"docker",
"requests<2.32.0"
]

[project.optional-dependencies]
dev = [
"pre-commit"
]

[tool.setuptools]
packages = []
Loading