-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1022 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "fals"
version = "0.1.0"
description = "Code to reproduce figures"
requires-python = ">=3.11"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64"]
[tool.pixi.pypi-dependencies]
fals = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
boto3 = "<2.0"
duckdb = ">=1.0"
jupyter = ">=1.1"
jupyterlab = ">=4.3"
numpy = ">=2.0"
pandas = ">=2.0"
pyarrow = "18.0.0"
redun = ">=0.22"
s3fs = ">=2024.10"
scanpy = ">=1.10"
scikit-learn = ">=1.5"
seaborn = ">=0.13"
statsmodels = ">=0.14"
[project.optional-dependencies]
dev = ["ruff"]
[tool.ruff]
line-length = 99
[tool.ruff.lint]
exclude = [
"notebooks/*"
]
ignore = [
"E203",
"E701",
"E731",
]
select = [
"C90", # mccabe
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"W", # pycodestyle
"RUF100", # unnecessary noqa
"TID251", # banned imports
"TID252", # no relative imports
]