forked from lda-project/lda
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
71 lines (65 loc) · 1.95 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
71
[tool.poetry]
name = "lda"
version = "3.0.2"
description = "Topic modeling with latent Dirichlet allocation"
authors = ["lda developers <lda-users@googlegroups.com>"]
license = "MPL 2.0"
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
]
include = [
{ path = "meson.build", format = "sdist" },
{ path = "lda/*.so", format = "wheel" },
{ path = "lda/*.pyd", format = "wheel"},
]
[tool.poetry.build]
script = "build.py"
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=1.13.0"
[tool.poetry.group.dev.dependencies]
cython = "^3.0.8"
scipy = "^1.11.3"
sphinx = "^7.2.6"
sphinx-autoapi = "^3.0.0"
hacking = "^6.0.1"
coverage = "^7.3.2"
discover = "^0.4.0"
python-subunit = "^1.4.3"
oslosphinx = "^4.18.0"
oslotest = "^4.5.0"
testrepository = "^0.0.20"
testscenarios = "^0.5.0"
testtools = "^2.6.0"
numpydoc = "^1.6.0"
sphinx-rtd-theme = "^1.3.0"
flake8 = "^5.0.1"
[tool.poetry.group.build.dependencies]
meson-python = "^0.14.0"
cython = "^3.0.8"
ninja = "^1.11"
cibuildwheel = "^2.16"
[tool.cibuildwheel]
build = "cp310-* cp311-* cp312-*"
skip = ["pp*", "*i686", "*win32"]
test-requires = ["oslotest", "scipy", "setuptools"]
test-command = "python -m unittest discover -s {project}/lda/tests"
[build-system]
requires = ["poetry-core", "cython", "meson-python", "ninja"]
build-backend = "poetry.core.masonry.api"