salience-editor/api/pyproject.toml

28 lines
642 B
TOML
Raw Permalink Normal View History

[project]
name = "salience"
version = "0.0.0"
description = ""
authors = [
{ name = "Matt Neary", email = "neary.matt@gmail.com" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"flask>=2.3.2,<3.0.0",
2025-11-01 12:08:03 -07:00
"flask-cors>=4.0.0,<5.0.0",
2025-11-29 13:56:55 -08:00
"waitress>=3.0.0",
"transformers>=4.30.2,<5.0.0",
"nltk>=3.8.1,<4.0.0",
"sentence-transformers>=2.2.2,<3.0.0",
"numpy>=1.25.0,<2.0.0",
2025-11-02 13:09:23 -08:00
"pytest>=8.4.2",
"pytest-benchmark>=5.2.0",
"matplotlib>=3.10.7",
"seaborn>=0.13.2",
"pandas>=2.3.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"