GokulRajaR commited on
Commit
ca403e2
·
verified ·
1 Parent(s): 51f7bd5

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +18 -0
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "gemma-model-hosting"
3
+ version = "0.1.0"
4
+ description = "Gemma model hosting server for Arxiv RAG project"
5
+ authors = ["Your Name <your.email@example.com>"]
6
+ readme = "README.md"
7
+ requires-python = ">=3.11"
8
+ dependencies = [
9
+ "sentence-transformers",
10
+ "litserve",
11
+ "hf_xet",
12
+ "huggingface-hub>=0.16.0",
13
+ "numpy>=1.21.0",
14
+ "fastapi>=0.95.0"
15
+ ]
16
+
17
+ [tool.setuptools]
18
+ packages = ["."]