-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
87 lines (76 loc) · 1.8 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "mmsg"
authors= [{name = "Franz Louis Cesista"}]
description = "Multimodal Structured Generation"
requires-python = ">=3.8"
keywords=[
"machine learning",
"deep learning",
"language models",
"computer vision",
"structured generation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"outlines @ git+https://github.com/outlines-dev/outlines@main",
"Pillow",
"referencing",
"requests",
"torch",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"bitsandbytes",
"modal",
"numpy",
"term-image",
"pre-commit",
"transformers @ git+https://github.com/leloykun/transformers@fc--anole",
# "transformers",
]
[project.urls]
homepage = "https://github.com/leloykun/mmsg"
repository = "https://github.com/leloykun/mmsg"
[project.readme]
file="README.md"
content-type = "text/markdown"
[tool.setuptools]
packages = ["mmsg"]
[tool.setuptools.package-data]
"mmsg" = ["py.typed"]
[tool.setuptools_scm]
write_to = "mmsg/_version.py"
[tool.mypy]
exclude=[]
enable_incomplete_feature = ["Unpack"]
[tool.flake8]
max-line-length = 89
[tool.black]
line-length = 89
[[tool.mypy.overrides]]
module = [
"interegular.*",
"jsonschema.*",
"numpy.*",
"outlines.*",
"PIL.*",
"referencing.*",
"requests.*",
"torch.*",
"transformers.*",
]
ignore_missing_imports = true