28 lines
642 B
TOML
28 lines
642 B
TOML
[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",
|
|
"flask-cors>=4.0.0,<5.0.0",
|
|
"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",
|
|
"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"
|