Skip to content
Snippets Groups Projects
Commit fe842b78 authored by Blaise Li's avatar Blaise Li
Browse files

Add scipy dependency and ruff settigs.

parent 733244a7
No related branches found
No related tags found
No related merge requests found
...@@ -13,12 +13,20 @@ dependencies = [ ...@@ -13,12 +13,20 @@ dependencies = [
"cyvcf2", "cyvcf2",
"numpy", "numpy",
"pandas", "pandas",
"scipy",
#"pysam" #"pysam"
] ]
# computed from git tags by setuptools-scm # computed from git tags by setuptools-scm
dynamic = ["version"] dynamic = ["version"]
[tool.setuptools_scm] [tool.setuptools_scm]
#version_file = "libsnp/_version.py" #version_file = "libsnp/_version.py"
[tool.ruff.lint.per-file-ignores]
# Ignore `E401` in all `__init__.py` files
"__init__.py" = ["F401"]
"tests/test_libsnp.py" = ["E402"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system] [build-system]
requires = [ requires = [
"setuptools", "setuptools",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment