-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (59 loc) · 1.78 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
[project]
name = "tinytopics"
version = "0.7.2"
description = "Topic modeling via sum-to-one constrained neural Poisson non-negative matrix factorization"
authors = [
{ name = "Nan Xiao", email = "[email protected]" }
]
dependencies = [
"torch>=2.3.0",
"accelerate>=1.2.1",
"numpy>=2.0.0",
"scipy>=1.13.0",
"matplotlib>=3.8.4",
"scikit-image>=0.22.0",
"tqdm>=4.65.0",
]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.10"
[project.urls]
Homepage = "https://nanx.me/tinytopics/"
Documentation = "https://nanx.me/tinytopics/"
Repository = "https://github.com/nanxstats/tinytopics"
Issues = "https://github.com/nanxstats/tinytopics/issues"
Changelog = "https://github.com/nanxstats/tinytopics/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling==1.26.3"] # <https://github.com/astral-sh/rye/issues/1446>
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.42",
"mkdocstrings-python>=1.12.2",
"nbconvert>=7.16.4",
"jupyter>=1.1.1",
"ruff>=0.7.0",
"pandas>=2.2.3",
"pyreadr>=0.5.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/tinytopics"]