-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.41 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codeframe"
version = "0.1.0"
description = "Local tool to cluster, code, and tabulate open-ended survey responses with a code frame."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Codeframe contributors" }]
keywords = ["survey", "open-ended", "coding", "content-analysis", "nlp", "clustering", "local-first"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Intended Audience :: Science/Research",
]
dependencies = [
"scikit-learn>=1.3,<2",
"pandas>=2,<4",
"openpyxl>=3.1,<4",
"pyyaml>=6,<7",
"typer>=0.12,<1",
]
[project.optional-dependencies]
# Optional backends. Never required: TF-IDF is the default for clustering and
# assignment. Embeddings add semantic similarity; the dashboard adds a web UI.
embedding = ["sentence-transformers>=2.2"]
dashboard = ["gradio>=4"]
dev = ["pytest>=8", "hypothesis>=6"]
[project.scripts]
codeframe = "codeframe.cli:main"
[project.urls]
Homepage = "https://example.org/codeframe"
Source = "https://example.org/codeframe"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"