forked from dottxt-ai/outlines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
123 lines (112 loc) · 2.4 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "outlines"
authors= [{name = "Normal Computing", email = "[email protected]"}]
description = "Probabilistic Generative Model Programming"
requires-python = ">=3.7"
keywords=[
"normal computing",
"machine learning",
"deep learning",
"language models",
"diffusion models",
]
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",
"jinja2",
"lark",
"numpy",
"pillow",
"perscache",
"pydantic",
"regex",
"scipy",
"tenacity",
"torch",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"diffusers",
"pre-commit",
"pydantic>=2.0",
"pytest",
"pytest-cov",
"transformers",
"coverage[toml]>=5.1",
"diff-cover",
"lark",
"regex",
"interegular",
]
[project.urls]
homepage = "https://github.com/normal-computing/outlines"
documentation = "https://normal-computing.github.io/outlines/"
repository = "https://github.com/normal-computing/outlines"
[project.readme]
file="README.md"
content-type = "text/markdown"
[tool.setuptools_scm]
write_to = "outlines/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
"ignore::FutureWarning:transformers.*",
"ignore::FutureWarning:diffusers.*",
"ignore::UserWarning:torch.cuda.*"
]
[tool.mypy]
exclude=["examples"]
[[tool.mypy.overrides]]
module = [
"diffusers",
"jinja2",
"joblib",
"openai",
"numpy.*",
"perscache.*",
"PIL",
"PIL.Image",
"pydantic",
"pytest",
"scipy.*",
"tenacity.*",
"tiktoken.*",
"torch",
"transformers.*",
"lark.*",
"regex.*",
"interegular.*",
]
ignore_missing_imports = true
[tool.coverage.run]
omit = [
"outlines/_version.py",
"tests/*",
]
branch = 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 = ".."