-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (38 loc) · 1015 Bytes
/
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
[project]
name = "priompt"
version = "0.1.2"
description = "Priompt (priority + prompt) is prompting library. It uses priorities to decide what to include in the context window."
authors = [{ name = "Cyrus Nouroozi", email = "[email protected]" }]
dependencies = [
"tiktoken>=0.8.0",
"pyyaml>=6.0.2",
"ujson>=5.10.0",
"beartype>=0.19.0",
"typing-extensions>=4.12.2",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ipdb>=0.13.13",
"ipython>=8.29.0",
"syrupy>=4.8.0",
"hypothesis>=6.119.4",
"pytest-asyncio>=0.24.0",
"tox>=4.23.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/priompt"]
[tool.ruff]
line-length = 100
[tool.project.optional-dependencies]
dev = ["tox", "tox-gh-actions"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"