-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (89 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
94 lines (89 loc) · 2.52 KB
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
[project]
name = "ai-atlas-nexus"
version = "1.2.1"
authors = [
{ name = "AI Atlas Nexus", email = "ai-atlas-nexus@ibm.com" },
{ name = "Elizabeth Daly", email = "elizabeth.daly@ie.ibm.com" },
{ name = "Dhaval Salwala", email = "dhaval.vinodbhai.salwala@ibm.com" },
{ name = "Frank Bagehorn", email = "fba@zurich.ibm.com" },
{ name = "Luis Garces-Erice", email = "lga@zurich.ibm.com" },
{ name = "Sean Rooney", email = "sro@zurich.ibm.com" },
{ name = "Inge Vejsbjerg", email = "ingevejs@ie.ibm.com" },
]
keywords = [
"ai risks",
"ai safety",
"ai governance",
"risk taxonomies",
"risk identification",
"risk detection",
"ai task identification",
"ai risk management",
"ai risk questionnaire",
"ai systems modelling",
"knowledge graph",
"chain of thought",
]
description = "AI Atlas Nexus provides tooling to help bring together disparate resources related to governance of foundation models. "
readme = "README.md"
requires-python = ">=3.11, <3.12.5"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"linkml",
"linkml_runtime",
"pydantic",
"requests",
"rich",
"sssom",
"txtai",
"tqdm",
"logzero",
"python-dotenv",
"datasets",
"openai>=1.0",
"txtai",
"jsonschema",
"isort",
"pre-commit",
"typer",
"inflect",
"cymple"
]
[project.optional-dependencies]
wml = ["ibm-watsonx-ai"]
ollama = ["ollama"]
vllm = ["vllm", "xgrammar"]
docs = [
"mkdocs-material",
"mkdocs-jupyter",
"mkdocs-click",
"mkdocstrings[python]",
"griffe_inherited_docstrings",
"griffe-pydantic",
"mkdocs-awesome-nav",
]
[project.scripts]
ran-extension = "ai_atlas_nexus.extension:app"
[tool.isort]
skip_glob = ["v-ai-atlas-nexus/*"]
profile = "black"
line_length = 88
remove_redundant_aliases = true
group_by_package = true
combine_star = true
lines_after_imports = 2
[project.urls]
Homepage = "https://github.com/IBM/ai-atlas-nexus"
Documentation = "https://ibm.github.io/ai-atlas-nexus/"
Changelog = "https://github.com/IBM/ai-atlas-nexus/blob/main/CHANGELOG.md"
Issues = "https://github.com/IBM/ai-atlas-nexus/issues"