-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
135 lines (124 loc) · 3.73 KB
/
pyproject.toml
File metadata and controls
135 lines (124 loc) · 3.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[tool.poetry]
name = "eridu"
version = "0.1.6"
description = "Deep fuzzy matching people and company names for multilingual entity resolution using representation learning"
authors = [
"Russell Jurney, Graphlet AI, <rjurney@graphlet.ai>",
"Russell Jurney <russell.jurney@gmail.com>",
]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/Graphlet-AI/eridu"
homepage = "https://github.com/Graphlet-AI/eridu"
documentation = "https://github.com/Graphlet-AI/eridu"
keywords = [
"entity resolution",
"fuzzy matching",
"representation learning",
"deep learning",
"machine learning",
"graph neural networks",
"transformers",
"sentence transformers",
"pandas",
"numpy",
"pyspark",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Linguistic",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = ["LICENSE"]
package-mode = true
[tool.poetry.scripts]
eridu = "eridu.cli.main:cli"
[[tool.poetry.source]]
name = "rapids"
url = "https://pypi.nvidia.com"
priority = "supplemental"
[project]
name = "eridu"
version = "0.1.6"
[tool.poetry.urls]
"Company" = "https://graphlet.ai"
"Code Repository" = "https://github.com/Graphlet-AI/eridu"
"Bug Tracker" = "https://github.com/Graphlet-AI/eridu/issues"
"HuggingFace Hub" = "https://huggingface.co/Graphlet-AI/eridu"
[tool.poetry.dependencies]
python = ">=3.12,<3.15"
ipython = "^9.0.2"
numpy = "^2.0,<2.1"
transformers = { version = "^4.51.3", extras = ["torch"] }
sentence-transformers = { version = "^3.4.1", extras = ["torch"] }
pandas = "^2.2.3"
tqdm = "^4.67.1"
pyarrow = "^19.0.1"
wandb = "0.23.0"
jupyter = "^1.1.1"
notebook = "^7.3.3"
seaborn = "^0.13.2"
click = "^8.1.7"
requests = "^2.32.3"
pyspark = "^3.5.5"
datasets = "^3.5.1"
accelerate = "^1.6.0"
hdbscan = "^0.8.40"
numba = "^0.60.0"
llvmlite = "^0.43.0"
cudf-cu12 = { version = "^25.6.0", source = "rapids", markers = "sys_platform == 'linux'" }
cuml-cu12 = { version = "^25.6.0", source = "rapids", markers = "sys_platform == 'linux'" }
torch = ">=2.9.0"
torchvision = ">=0.24.0"
stop-words = "^2018.7.23"
langdetect = "^1.0.9"
cython = "^3.2.0"
disco = {git = "ssh://git@github.com/rjurney/disco.git"}
[tool.poetry.group.dev.dependencies]
black = { version = "^25.1.0", extras = ["jupyter"] }
isort = "^6.0.1"
flake8 = "^7.1.2"
mypy = "^1.15.0"
pytest = "^8.3.5"
pre-commit = "^4.2.0"
pandas-stubs = "^2.2.3.250308"
types-tqdm = "^4.67.0.20250319"
nbdime = "^4.0.2"
jupyter-black = "^0.4.0"
pyarrow-stubs = "^19.1"
types-seaborn = "^0.13.2.20250111"
scipy-stubs = "^1.15.2.2"
validate-pyproject = { extras = ["all"], version = "^0.24.1" }
huggingface-hub = { extras = ["cli", "hf_xet"], version = "^0.31.2" }
types-PyYAML = "6.0.12.20250516"
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py312"]
include = '\.py$'
[tool.isort]
profile = "black"
src_paths = ["."]
[tool.mypy]
python_version = "3.12"
mypy_path = ["."]
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"] # Look for tests in the root directory.