File: pyproject.toml

package info (click to toggle)
pdm 2.23.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,552 kB
  • sloc: python: 24,995; javascript: 34; makefile: 24
file content (24 lines) | stat: -rw-r--r-- 538 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "pdm-chatbot"
version = "0.0.0"
authors = [
    {name = "Frost Ming", email = "me@frostming.com"},
]
dependencies = [
    "setuptools>=68.2.2",
    "openai>=0.28.1",
    "streamlit>=1.28.1",
    "llama-index-llms-azure-openai>=0.3.0",
    "llama-index-core>=0.12.1",
    "llama-index-embeddings-azure-openai>=0.3.0",
    "llama-index-readers-file>=0.4.0",
]
requires-python = ">=3.10,<3.12"
readme = "README.md"
license = {text = "MIT"}

[tool.pdm]
distribution = false

[tool.pdm.scripts]
start = "streamlit run app.py"