-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (34 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
version = "0.7.20"
name = "dtcc"
description = "DTCC"
readme = "README.md"
authors = [
{ name = "Dag Wästberg", email = "dwastberg@gmail.com" },
{ name = "Anders Logg", email = "logg@chalmers.se" },
{ name = "Vasilis Naserentin", email = "vasilis.naserentin@chalmers.se" },
{ name = "George Spaias" , email= "gspaiasa@ece.auth.gr" },
{ name = "Jens Olsson" , email= "jens.olsson@chalmersindustriteknik.se" },
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"dtcc-core@git+https://github.com/dtcc-platform/dtcc-core.git@develop",
"dtcc-data@git+https://github.com/dtcc-platform/dtcc-data.git@develop"
]
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx", "sphinx-immaterial"]
viewer = ["dtcc-viewer@git+https://github.com/dtcc-platform/dtcc-viewer.git@develop"]
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
[tool.cibuildwheel]
test-command = "pytest {project}/tests"
build-verbosity = 1