-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 783 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
37
38
39
40
41
42
[project]
name = "blv"
version = "0.3.5"
description = "Simple wrapper for LeanREPL"
authors = [
{ name = "Nilay Patel", email = "nilaypatel2@gmail.com" }
]
dependencies = [
"rq>=2.3.2",
"redis[hiredis]>=6.0.0",
"more-itertools>=10.7.0",
"pandas>=2.2.3",
"tqdm>=4.67.1",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"isort>=6.0.1",
"black>=25.1.0",
"ipython>=9.2.0",
"ruff>=0.11.11",
"datasets>=4.2.0",
]
[tool.rye.scripts]
repl = {"cmd" = "python src/blv/repl.py"}
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/blv"]
[tool.black]
line-length = 120