-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
39 lines (32 loc) · 922 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
[project]
name = "prompts"
version = "0.1.0"
description = "Large Language Models prompting library"
authors = [{name = "The Outlines developers", email = "[email protected]"}]
requires-python = ">= 3.8"
dependencies = ["jinja2"]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["prompts"]
[tool.setuptools.package-data]
"prompts" = ["py.typed"]
[tool.setuptools_scm]
write_to = "prompts/_version.py"
[project.optional-dependencies]
test = ["pre-commit", "pytest", "pytest-benchmark"]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-material",
"mkdocs-section-index",
"mkdocs-git-committers-plugin-2",
"mkdocs-git-revision-date-localized-plugin",
]
[project.readme]
file="README.md"
content-type = "text/markdown"
[[tool.mypy.overrides]]
module = ["jinja2", "pytest"]
ignore_missing_imports = true