-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.18 KB
/
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
[tool.poetry]
name = "tidalsim"
version = "0.1.0"
description = ""
authors = ["Vighnesh Iyer <[email protected]>"]
readme = "README.md"
packages = [
{include = "tidalsim"}
]
[tool.poetry.scripts]
gen-ckpt = "tidalsim.scripts.gen_ckpt:main"
gen-cache-state = "tidalsim.scripts.gen_cache_state:main"
tidalsim = "tidalsim.scripts.tidalsim:main"
analyze = "tidalsim.scripts.analyze:main"
bench-spike-bb-extraction = "tidalsim.scripts.bench_spike_bb_extraction:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
tqdm = "^4.66.1"
numpy = "^1.26.1"
scikit-learn = "^1.3.2"
notebook = "^7.0.6"
matplotlib = "^3.8.1"
joblib = "^1.3.2"
more-itertools = "^10.2.0"
pandas = "^2.2.0"
pandera = {version="^0.18.0"}
pyarrow = "^15.0.0"
[tool.poetry.dev-dependencies]
pytest = "^8.0.0"
pyright = "^1.1.350"
setuptools = "^69.1.0"
black = "^24.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
exclude = ["tidalsim/archive/**"]
include = ["tidalsim", "tests"]
reportMissingImports = true
typeCheckingMode = "standard"
[tool.black]
line-length = 100
include = "tidalsim|tests"
extend-exclude = "tidalsim/archive/.*"
unstable = true
preview = true