-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.38 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
# PEP 621 metadata (keep in sync with setup.cfg for setuptools < 61 / legacy installers).
[project]
name = "neural-topic-models"
version = "0.1.0"
description = "PyTorch neural topic models (GSM, WTM, ETM, GMNTM, BATM) with an importable ntm API."
readme = "README.md"
requires-python = ">=3.6"
license = "Apache-2.0"
authors = [{ name = "ZhangLeilan" }]
keywords = [
"topic-model",
"neural-topic-model",
"pytorch",
"gensim",
"ntm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=1.6.0",
"gensim>=4.2.0",
"tqdm>=4.64.0",
"numpy>=1.19.5",
"matplotlib>=3.3.4",
"scikit-learn>=0.24.2",
"jieba>=0.42.1",
]
[project.optional-dependencies]
hanlp = ["pyhanlp"]
full = ["pyhanlp"]
dev = ["pytest>=6.0"]
release = ["build>=1.0.0", "twine>=4.0"]
[project.urls]
Homepage = "https://github.com/zll17/Neural_Topic_Models"
Repository = "https://github.com/zll17/Neural_Topic_Models"
Documentation = "https://github.com/zll17/Neural_Topic_Models/blob/master/ntm_usage.md"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-ra"