forked from monocle2ai/monocle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (72 loc) · 1.72 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monocle_apptrace"
version = "0.1.0"
authors = []
description = "package with monocle genAI tracing"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'requests',
'wrapt>=1.14.0',
'opentelemetry-api>=1.21.0',
'opentelemetry-sdk>=1.21.0',
'opentelemetry-instrumentation',
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[project.optional-dependencies]
dev = [
'langchain-openai==0.1.8',
'langchain-chroma==0.1.1',
'langchain-community==0.2.5',
'langchain==0.2.5',
'datasets==2.20.0',
'numpy==1.26.4',
'types-requests==2.31.0.20240106',
'InstructorEmbedding==1.0.1',
'sentence-transformers==2.6.1',
'faiss-cpu==1.8.0',
'pytest==8.0.0',
'llama-index==0.10.30',
'llama-index-embeddings-huggingface==0.2.0',
'llama-index-vector-stores-chroma==0.1.9',
'parameterized==0.9.0'
]
[project.urls]
Homepage = "https://github.com/monocle2ai/monocle"
Issues = "https://github.com/monocle2ai/monocle/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/monocle_apptrace"]
[tool.hatch.build.targets.sdist]
ignore-vcs = true
[tool.hatch.build]
exclude = [
"/.*",
"*.txt",
"Pipfile",
"/data",
"/docs",
"/tests",
"*.yml",
]
[tool.pylint]
max-line-length = 120
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]