-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "few_shot_clustering"
authors = [
{name = "Vijay Viswanathan", email = "vijayv@andrew.cmu.edu"},
]
version = "0.0.3"
description = "A library for efficient semi-supervised clustering with large language models."
readme = "README.md"
repository = "https://github.com/viswavi/few-shot-clustering"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.7",
]
dependencies = [
"scikit-learn",
"scipy",
"numpy",
"openai",
"sentence_transformers",
"jsonlines",
"ortools",
"tqdm",
"datasets",
"InstructorEmbedding",
"gensim",
"metric_learn",
"tensorboardX",
"nlpaug"
]
[tool.hatch.build]
include = [
"*.py",
]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["few_shot_clustering"]
[tool.setuptools.packages.find]
where = ["few_shot_clustering/active_semi_supervised_clustering", "few_shot_clustering/cmvc"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
version = "0.0.3"