-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.6 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
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prich"
version = "0.1.0"
description = "A CLI tool for creating and executing reusable LLM prompt pipelines with pre/postprocessing and team sharing"
readme = "README.md"
authors = [{name = "Oleksandr Mikriukov", email = "oleks@oleksm.dev"}]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"click>=8.1,<9.0",
"jinja2>=3.1,<4.0",
"pyyaml>=6.0,<7.0",
"rich>=13.7,<14.0",
"pydantic>=2.11,<3.0",
"requests>=2.32,<3.0",
"python-dotenv>=1.1,<2.0",
]
keywords = ["cli", "llm", "prompt-engineering", "template", "pipeline", "team-collaboration"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
openai = ["openai>=1.0.0,<2.0.0"]
mlx = ["mlx_lm>=0.24.1,<1.0.0"]
dev = ["openai", "mlx_lm", "pytest", "coverage", "pytest-cov", "pytest-xdist", "twine", "build", "faker"]
[project.urls]
Homepage = "https://github.com/oleks-dev/prich"
Repository = "https://github.com/oleks-dev/prich"
Documentation = "https://oleks-dev.github.io/prich/"
[project.scripts]
prich = "prich.cli.main:cli"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["prich*"]
exclude = ["tests*"]
[tool.coverage.run]
branch = true
source = ["prich"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.pytest.ini_options]
addopts = "-ra --cov=prich --cov-report=term-missing"
testpaths = ["tests"]