-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 819 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 819 Bytes
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
[build-system]
requires=["hatchling"]
build-backend = "hatchling.build"
[project]
name = "idsprites"
version = "1.0.4"
authors = [
{name = "Sebastian Dziadzio", email = "dziadzio@hey.com"},
]
description = "Easily generate simple continual learning benchmarks."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"imageio>=2.13.0",
"matplotlib>=3.8.2",
"numba>=0.58.1",
"numpy>=1.26.2",
"omegaconf>=2.3.0",
"opencv-python>=4.8.1",
"scipy>=1.11.4",
"scikit-learn>=1.3.2",
"torch>=2.1.2",
"tqdm>=4.66.1",
]
[tool.hatch.build]
include = ["idsprites"]
[tool.ruff]
select = ["E", "F", "B"]
ignore = ["B905"] # disable zip-without-explicit-strict
line-length = 120
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"] # disable unused-import in __init__.py files