generated from uw-ssec/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "rse-toolbox"
dynamic = ["version"]
description = "A toolbox for working with research software and models."
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"torch~=2.1.1",
"fsspec"
]
[project.optional-dependencies]
dev = [
"ipykernel",
"ipywidgets",
"pytest",
"pytest-cov",
"pytest-flake8",
"pytest-mock",
"pytest-xdist",
"pytest-benchmark",
"pre-commit",
]
llms = [
"transformers>=4.40.1,<5",
"huggingface-hub>=0.21.4,<1",
"accelerate>=0.30.0,<1",
"llama-cpp-python>=0.2.70,<1",
"pandas>=2.2.2,<3",
"langchain>=0.1.19,<1",
"pypdf>=4.2.0,<5"
]
olmo = [
"rse-toolbox[llms]",
"ai2-olmo>=0.3.0"
]
all = [
"rse-toolbox[dev,llms,olmo]",
]
[project.urls]
Homepage = "https://github.com/uw-ssec/rse-toolbox"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/rse_toolbox/version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.sdist]
exclude = [
"/tests",
]