-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (50 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tmplot"
dynamic = ["version"]
description = "Visualization of Topic Modeling Results"
readme = "README.md"
requires-python = ">=3.8"
license.file = "LICENSE"
authors = [
]
keywords = [
"data science",
"data analytics"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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 :: Information Analysis",
"Topic :: Text Processing :: General",
]
urls.homepage = "https://github.com/maximtrp/tmplot"
urls.documentation = "https://tmplot.readthedocs.io/"
dependencies = [
"numpy",
"seaborn",
"pandas",
"scikit-learn",
"scipy",
"altair",
"ipywidgets",
"tqdm",
]
[project.optional-dependencies]
test = ["pytest", "coverage"]
models = ["tomotopy>=0.8.0", "gensim", "bitermplus"]
[tool.setuptools.dynamic]
version = {attr = "tmplot.__version__"}
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"