Spaces:
Runtime error
Runtime error
Upload pyproject.toml
Browse files- pyproject.toml +29 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "qualivec"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "A Python library for scalable qualitative content analysis using LLM embeddings and semantic vector-based classification."
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
authors = [
|
| 7 |
+
{ name = "Akhil Vaidya", email = "akhilvaidya2004@gmail.com" }
|
| 8 |
+
]
|
| 9 |
+
requires-python = "==3.12.10"
|
| 10 |
+
dependencies = [
|
| 11 |
+
"pandas>=2.0.0",
|
| 12 |
+
"numpy>=1.24.0",
|
| 13 |
+
"scikit-learn>=1.2.0",
|
| 14 |
+
"transformers>=4.28.0",
|
| 15 |
+
"torch>=2.0.0",
|
| 16 |
+
"tqdm>=4.65.0",
|
| 17 |
+
"matplotlib>=3.7.0",
|
| 18 |
+
"seaborn>=0.12.0",
|
| 19 |
+
"streamlit>=1.28.0",
|
| 20 |
+
"plotly>=5.17.0",
|
| 21 |
+
"google-genai>=0.2.0",
|
| 22 |
+
]
|
| 23 |
+
|
| 24 |
+
[project.scripts]
|
| 25 |
+
qualivec = "qualivec:main"
|
| 26 |
+
|
| 27 |
+
[build-system]
|
| 28 |
+
requires = ["hatchling"]
|
| 29 |
+
build-backend = "hatchling.build"
|