-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.31 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# pyproject.toml
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# Include ALL relevant directories and files
[tool.setuptools.packages.find]
include = [
"qualitative_analysis*",
"notebooks*",
"codebook*",
"data*"
]
# Include non-code files (e.g., CSVs, JSONs, notebooks)
[tool.setuptools.package-data]
qualitative_analysis = ["*.json", "*.csv", "*.txt"]
notebooks = ["*.ipynb"]
codebook = ["*"]
data = ["*"]
# Include app.py as a console script
[project.scripts]
qualitative-app = "app:main"
[project]
name = "qualitative_analysis"
version = "0.1.0"
description = "A toolkit for qualitative data analysis using language models."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "UNLICENSED" }
authors = [
{ name="Olivier Clerc", email="oclerc38@gmail.com" },
]
dependencies = [
"pandas==2.2.3",
"scikit-learn==1.5.2",
"seaborn==0.13.2",
"streamlit==1.40.2",
"together==1.3.5",
"python-dotenv==1.0.1",
"matplotlib==3.9.2",
"chardet==5.2.0",
"openai==1.54.1",
"httpx==0.27.2",
"regex==2024.9.11",
"transformers==4.48.3",
"torch==2.6.0",
"torchvision==0.21.0",
"sentencepiece==0.2.0",
"sacremoses==0.1.1",
"openpyxl==3.1.5",
]
# [project.optional-dependencies]
# dev = [
# "pytest",
# "mypy",
# "black",
# "flake8",
# ]