-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 794 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastopic"
version = "1.0.1"
description = "FASTopic"
readme = "README.md"
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 processing",
"text analysis"
]
dependencies = [
"topmost>=1.0.2"
]
[project.optional-dependencies]
test = [
"pytest>=8.3.0"
]
[tool.setuptools]
packages = ["fastopic"]
[project.urls]
Homepage = "https://github.com/bobxwu/fastopic"
Repository = "https://github.com/bobxwu/fastopic.git"
Issues = "https://github.com/bobxwu/fastopic/issues"