-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 846 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "alpacai"
version = "0.1.0"
license = {text = "AlpacAI"}
authors = [
{name = "Afrizal Herlambang", email = "afri.bit@outlook.com"},
{name = "Zehra Nur Olgun", email = "zehranurro@gmail.com"},
{name = "Carlos Hernandez", email = "albertocarlos.hernandez@gmail.com"},
{name = "Sergio Roa-Ovalle", email = "s.roa@computer.org"},
]
description = "Intelligent Driver Drowsiness System"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["SDV", "hackathon", "GenAI"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"kuksa-client",
]
[tool.setuptools]
package-dir = {"" = "src"}
[project.scripts]
attentiveai = "alpacai.app:run"
convagent = "alpacai.conversation_agent:run"