-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 995 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
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "stampy_nlp"
dynamic = ["version"]
authors = [
{name = "ccstan99", email = "[email protected]"},
{name = "Daniel O'Connell", email = "[email protected]"},
]
description = "Stampy NLP performs semantic search and other NLP microservices for aisafety.info and stampy.ai, a database of questions and answers about AGI safety"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
"Flask",
"flask-cors",
"google-cloud-storage",
"gunicorn",
"openai",
"pandas",
"pinecone-client",
"python-dotenv",
]
[project.urls]
"Homepage" = "https://github.com/StampyAI/stampy-nlp"
"Bug Tracker" = "https://github.com/StampyAI/stampy-nlp/issues"
[project.optional-dependencies]
tests = [
"pytest",
]
local_model = [
"sentence-transformers",
]
[project.scripts]
run_stampy_nlp = "stampy_nlp.main:run"