-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "semantic_components"
version = "0.1.1"
description = "Finding semantic components in your neural representations."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{ name = "Florian Eichin", email = "[email protected]" },
]
keywords = [
"nlp",
"clustering",
"topic",
"modeling",
"embeddings",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.26.4",
"hdbscan>=0.8.39",
"jieba>=0.42.1",
"pandas>=2.2.3",
"scikit-learn>=1.1.0",
"sentence-transformers>=3.2.0",
"torch>=2.4.1",
"transformers>=4.45.2",
"umap-learn>=0.5.6",
]
[project.optional-dependencies]
octis = [
"numpy==1.26.4",
"scikit-learn==1.1.0",
"octis>=1.14.0",
]
[tool.setuptools.packages.find]
include = ["semantic_components*"]
exclude = ["tests"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["E501"]
[project.urls]
Documentation = "https://github.com/mainlp/semantic_components"
Homepage = "https://github.com/mainlp/semantic_components"
Issues = "https://github.com/mainlp/semantic_components/issues"
Repository = "https://github.com/mainlp/semantic_components"