-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
125 lines (111 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "setuptools-rust"]
build-backend = "setuptools.build_meta"
[project]
name = "outlines_core"
authors= [{name = "Outlines Developers"}]
description = "Structured Text Generation in Rust"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
keywords=[
"machine learning",
"deep learning",
"language models",
"structured generation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"interegular",
"jsonschema",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pre-commit",
"pydantic",
"pytest",
"pytest-benchmark",
"pytest-cov",
"pytest-mock",
"coverage[toml]>=5.1",
"diff-cover",
"accelerate",
"beartype<0.16.0",
"huggingface_hub",
"torch",
"numpy",
"scipy",
"transformers",
"datasets",
"pillow",
"asv",
"setuptools-rust",
]
[project.urls]
homepage = "https://github.com/dottxt-ai/outlines-core"
documentation = "https://dottxt-ai.github.io/outlines-core/"
repository = "https://github.com/dottxt-ai/outlines-core"
[project.readme]
file="README.md"
content-type = "text/markdown"
[tool.cibuildwheel]
skip = ["*-musllinux_i686"]
[tool.setuptools]
packages = ["outlines_core"]
package-dir = {"" = "python"}
[tool.setuptools.package-data]
"outlines_core" = ["py.typed", "**/*.pyi"]
[tool.setuptools_scm]
write_to = "python/outlines_core/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore::pydantic.warnings.PydanticDeprecatedSince20",
"ignore::UserWarning",
"ignore::DeprecationWarning",
]
addopts = [
"--import-mode=importlib"
]
[tool.mypy]
exclude=["examples", "tests", "benchmarks"]
[[tool.mypy.overrides]]
module = [
"jsonschema.*",
"pydantic.*",
"pytest",
"interegular.*",
"setuptools.*",
"setuptools_rust.*",
]
ignore_missing_imports = true
[tool.coverage.run]
omit = [
"python/outlines_core/_version.py",
"python/outlines_core/__init__.py",
"tests/*",
]
branch = true
relative_files = true
[tool.coverage.report]
omit = [
"tests/*",
]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"\\.\\.\\.",
]
show_missing = true
[tool.diff_cover]
compare_branch = "origin/main"
diff_range_notation = ".."