-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.04 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "topmost"
version = "1.0.2"
description = "Topmost: A Topic Modeling System Toolkit"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "Apache 2.0 License"}
authors = [
{name = "Xiaobao Wu", email = "xiaobao002@e.ntu.edu.sg"}
]
keywords = [
"toolkit",
"topic model",
"neural topic model",
"bert",
"semantics",
"text"
]
dependencies = [
"pandas>=2.2.0",
"plotly>=6.0.0",
"sentence-transformers>=3.4.0",
"torchvision>=0.21.0",
"gensim>=4.3.3",
"scikit-learn>=1.6.1",
"tqdm>=4.66.0",
"fastopic>=1.0.0"
]
[project.optional-dependencies]
dev = [
"bertopic>=0.16.0"
]
test = [
"pytest>=8.3.0"
]
[tool.setuptools]
packages = ["topmost"]
[project.urls]
Documentation = "https://topmost.readthedocs.io/en/latest/?badge=latest"
Homepage = "https://github.com/bobxwu/topmost"
Repository = "https://github.com/bobxwu/TopMost.git"
Issues = "https://github.com/bobxwu/TopMost/issues"