forked from dell-research-harvard/linktransformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·54 lines (48 loc) · 1.2 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
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[project]
name = "linktransformer"
version = "0.1.14"
dependencies = [
"scikit-learn",
"faiss-cpu",
"hdbscan",
"networkx",
"torch",
"sentence_transformers",
"transformers",
"wandb",
"numpy",
"pandas",
"openai",
"openpyxl",
"datasets",
"accelerate",
"evaluate"
]
authors = [
{ name="Abhishek Arora and Melissa Dell", email="[email protected]" },
]
description = "A friendly way to do link, aggregate, cluster and de-duplicate dataframes using large language models."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://linktransformer.github.io/"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.setuptools]
# ...
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]