-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
executable file
·54 lines (48 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
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[project]
name = "linktransformer"
version = "0.1.15"
dependencies = [
"scikit-learn==1.3.2",
"faiss-cpu==1.8.0",
"hdbscan==0.8.36",
"networkx==3.1",
"torch==2.3.0",
"sentence-transformers==2.3.1",
"transformers==4.41.1",
"wandb==0.17.0",
"numpy==1.24.4",
"pandas==2.0.3",
"openai==1.30.4",
"openpyxl==3.1.2",
"datasets==2.19.1",
"accelerate==0.30.1",
"evaluate==0.4.2"
]
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, <3.12"
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"]