-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.01 KB
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
[project]
name = "adulib"
version = "0.4.6"
description = "Tools and utilities developed by the Autonomy Data Unit (ADU)."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"tqdm>=4.67.1",
"aiohttp>=3.11.12",
"asynciolimiter>=1.0.0",
"diskcache>=5.6.3",
"python-dotenv>=1.1.0",
"pydantic>=2.10.6",
"watchdog>=6.0.0",
"questionary>=2.1.0",
"fastcore>=1.8.2",
"pipe>=2.2",
"pandas>=2.3.0",
"pyperclip>=1.9.0",
]
authors = [
{ name = "Lukas Kikuchi", email = "lukas.kikuchi@gmail.com" }
]
[project.optional-dependencies]
llm = [
"litellm>=1.67.5",
]
algos = [
"numpy>=2.0.2",
"rapidfuzz>=3.13.0",
"scikit-learn>=1.6.1",
]
[dependency-groups]
dev = [
"git-cliff>=2.8.0",
"jupyterlab>=4.3.5",
"nbdev>=2.3.34",
"nblite>=0.2.0",
"setuptools-scm>=8.1.0",
"twine>=6.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
ignore-vcs = true
packages = ["adulib"]
include = ["adulib/assets/**"]