-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (44 loc) · 1.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "libcosimpy"
dynamic = ["version"]
authors = [
{ name = "Magnus Steinstø", email = "[email protected]" },
]
maintainers = [
{ name = "Hee Jong Park", email = "[email protected]"}
]
description = "Python wrapper for the libcosim library"
readme = "README.md"
requires-python = ">=3.8, <3.13"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
]
[project.urls]
"Homepage" = "https://github.com/open-simulation-platform/libcosimpy"
# Hatch configurations
[tool.hatch.version]
path = "src/libcosimpy/__about__.py"
[tool.hatch.build]
exclude = ["tests", ".github"]
[tool.hatch.build.targets.wheel.hooks.custom]
dependencies = [
"conan==1.64.0",
"patchelf>=0.17.2; platform_system == 'Linux'"
]
[tool.hatch.build.targets.wheel.force-include]
"build/libcosimc" = "src/libcosimpy/libcosimc"
[tool.cibuildwheel.linux]
before-all = "yum install -y libatomic"
[tool.cibuildwheel]
build = "*-manylinux_x86_64 *-win_amd64"