-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.3 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
[build-system]
requires = ["setuptools>=56.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "digitaltwins"
dynamic = ["version", "dependencies"]
description = "A Python tool for interacting with the 12 Labours DigitalTWINS (Digital Translational Workflows for Integrating Systems) Platform"
authors = [
{ name = "Chinchien Lin", email = "clin864@aucklanduni.ac.nz"},
{ name = "Thiranja Prasad Babarenda Gamage", email = "psam012@aucklanduni.ac.nz"},
{ name = "Linkun Gao"},
{ name = "Jiali Xu"},
{ name = "David Nickerson"}
]
maintainers = [{ name = "Chinchien Lin", email = "clin864@aucklanduni.ac.nz"}]
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
[project.urls]
Homepage = "https://github.com/ABI-CTT-Group/digitaltwins-api"
[tool.setuptools]
package-dir = {"" = "src"}
#packages = ["digitaltwins"]
include-package-data = true
#license-files = ["LICENSE"] # introduced in PEP639. However, as of February 2025, setuptools does not support PEP639 yet
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "digitaltwins.__version__.__version__" }
dependencies = { file = ["requirements-prod.txt"] }
[tool.setuptools.package-data]
"digitaltwins" = []
# notes
# Validating
# python -m build -v
# Building
# python -m build