-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (30 loc) · 959 Bytes
/
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rai-checklist-cli"
version = "0.7.4"
description = "A CLI tool to generate responsible AI checklists for machine learning projects."
readme = "README.md"
authors = [{name = "Noble Ackerson", email = "noblel@byteanatom.com"}]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"pyyaml",
"tqdm",
"ipywidgets",
"google-generativeai", # Added new dependency
]
[project.optional-dependencies]
test = ["pytest", "pylint"] # Moved 'pylint' to test dependencies
[project.scripts]
rai-checklist = "rai_checklist_cli.cli:main"
[tool.setuptools.packages.find]
include = ["rai_checklist_cli*"]
[tool.setuptools.package-data]
rai_checklist_cli = ["templates.yaml"]