-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 760 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 760 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
[build-system]
requires = ["setuptools>=68", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "tova"
version = "0.1.0"
description = "Topic modeling toolkit"
authors = [{ name = "Daniel Stephens & Lorena Calvo-Bartolomé" }]
requires-python = ">=3.12,<4.0"
readme = "README.md"
license = { text = "MIT License" }
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
# base requirements
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
# expose service-specific extras
[tool.setuptools.dynamic.optional-dependencies]
ui = { file = ["ui/requirements.txt"] }
solr = { file = ["solr/solr-api/requirements.txt"] }