-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 934 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
[project]
name = "command-line-assistant"
version = "0.1.1"
description = "A simple wrapper to interact with RAG"
authors = [
{ name = "RHEL Lightspeed team", email = "rhel-sst-lightspeed@redhat.com" },
]
maintainers = [
{ name = "Rodolfo Olivieri", email = "rolivier@redhat.com" },
{ name = "Major Hayden", email = "mhayden@redhat.com" },
]
requires-python = ">=3.9" # RHEL 9 and 10
readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3"]
[project.urls]
Repository = "https://github.com/rhel-lightspeed/command-line-assistant.git"
Issues = "https://github.com/rhel-lightspeed/command-line-assistant/issues"
[build-system]
# pdm build is not available in rhel baseos repositories
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# ----- Tooling specifics
[tool.setuptools]
packages = ["command_line_assistant"]
[tool.pdm]
distribution = true