-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1001 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
43
44
45
46
47
48
49
[project]
name = "timestress"
version = "0.1.0"
description = ""
authors = [
{ name = "Hichem Ammar Khodja", email = "hichem.ammarkhodja@orange.com" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ke-utils",
"lm-tools",
"wikidata-tools",
"verb-tools",
"temporality-context-paper",
]
[tool.uv.workspace]
members = ["packages/ke-utils", "packages/lm-tools", "packages/wikidata-tools", "packages/verb-tools",
"experiments/temporality-context-paper"]
exclude = []
[tool.uv.sources]
ke-utils = { workspace = true }
lm-tools = { workspace = true }
wikidata-tools = { workspace = true }
verb-tools = { workspace = true }
temporality-context-paper = { workspace = true }
[[tool.uv.index]]
url = "https://pypi.org/simple"
[[tool.uv.index]]
name = "torch-cu118"
url = "https://download.pytorch.org/whl/cu118"
[tool.hatch.build.targets.sdist]
exclude = [
"tests"
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"markupsafe>=3.0.2",
"pytest>=8.3.3",
]