-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: zethson <[email protected]>
- Loading branch information
Showing
8 changed files
with
272 additions
and
153 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 |
---|---|---|
@@ -0,0 +1,132 @@ | ||
[build-system] | ||
build-backend = "hatchling.build" | ||
requires = ["hatchling"] | ||
|
||
[project] | ||
name = "nicheformer-data" | ||
version = "0.0.1" | ||
description = "Data collection for nicheformer" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "theislab"}, | ||
] | ||
maintainers = [ | ||
{name = "theislab", email = "[email protected]"}, | ||
] | ||
urls.Documentation = "https://nicheformer-data.readthedocs.io/" | ||
urls.Source = "https://github.com/theislab/nicheformer-data" | ||
urls.Home-page = "https://github.com/theislab/nicheformer-data" | ||
dependencies = [ | ||
"anndata", | ||
"scanpy", | ||
"lamindb[zarr,aws,bionty,jupyter]==0.63.5", | ||
"cellxgene-schema>=3.1.3", | ||
# for debug logging (referenced from the issue template) | ||
"session-info" | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pre-commit", | ||
"twine>=4.0.2" | ||
] | ||
doc = [ | ||
"docutils>=0.8,!=0.18.*,!=0.19.*", | ||
"sphinx>=4", | ||
"sphinx-book-theme>=1.0.0", | ||
"myst-nb", | ||
"sphinxcontrib-bibtex>=1.0.0", | ||
"sphinx-autodoc-typehints", | ||
"sphinxext-opengraph", | ||
# For notebooks | ||
"ipykernel", | ||
"ipython", | ||
"sphinx-copybutton", | ||
] | ||
test = [ | ||
"pytest", | ||
"pytest-cov", | ||
] | ||
|
||
[tool.coverage.run] | ||
source = ["nicheformer_data"] | ||
omit = [ | ||
"**/test_*.py", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
xfail_strict = true | ||
addopts = [ | ||
"--import-mode=importlib", # allow using test files with same name | ||
] | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
||
[tool.ruff] | ||
src = ["src"] | ||
line-length = 120 | ||
select = [ | ||
"F", # Errors detected by Pyflakes | ||
"E", # Error detected by Pycodestyle | ||
"W", # Warning detected by Pycodestyle | ||
"I", # isort | ||
"D", # pydocstyle | ||
"B", # flake8-bugbear | ||
"TID", # flake8-tidy-imports | ||
"C4", # flake8-comprehensions | ||
"BLE", # flake8-blind-except | ||
"UP", # pyupgrade | ||
"RUF100", # Report unused noqa directives | ||
] | ||
ignore = [ | ||
# line too long -> we accept long comment lines; black gets rid of long code lines | ||
"E501", | ||
# Do not assign a lambda expression, use a def -> lambda expression assignments are convenient | ||
"E731", | ||
# allow I, O, l as variable names -> I is the identity matrix | ||
"E741", | ||
# Missing docstring in public package | ||
"D104", | ||
# Missing docstring in public module | ||
"D100", | ||
# Missing docstring in __init__ | ||
"D107", | ||
# Errors from function calls in argument defaults. These are fine when the result is immutable. | ||
"B008", | ||
# __magic__ methods are are often self-explanatory, allow missing docstrings | ||
"D105", | ||
# first line should end with a period [Bug: doesn't work with single-line docstrings] | ||
"D400", | ||
# First line should be in imperative mood; try rephrasing | ||
"D401", | ||
## Disable one in each pair of mutually incompatible rules | ||
# We don’t want a blank line before a class docstring | ||
"D203", | ||
# We want docstrings to start immediately after the opening triple quote | ||
"D213", | ||
] | ||
|
||
[tool.ruff.pydocstyle] | ||
convention = "numpy" | ||
|
||
[tool.ruff.per-file-ignores] | ||
"docs/*" = ["I"] | ||
"tests/*" = ["D"] | ||
"*/__init__.py" = ["F401"] | ||
"scripts/*.py" = ["D","BLE","I", "E"] | ||
|
||
[tool.cruft] | ||
skip = [ | ||
"tests", | ||
"src/**/__init__.py", | ||
"src/**/basic.py", | ||
"docs/api.md", | ||
"docs/changelog.md", | ||
"docs/references.bib", | ||
"docs/references.md", | ||
"docs/notebooks/example.ipynb" | ||
] |
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
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 |
---|---|---|
|
@@ -7,9 +7,6 @@ | |
|
||
|
||
class MetaData: | ||
def __init__(self): | ||
pass | ||
|
||
def _warn_unmatch( | ||
self, | ||
total_identifiers: int, | ||
|
Oops, something went wrong.