-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (38 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ctrlutils"
version = "1.5.1"
authors = [
{name = "Toki Migimatsu", email = "[email protected]"}
]
description = "Python robot control utils"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = ["numpy", "redis"]
[project.urls]
Homepage = "https://github.com/tmigimatsu/ctrl-utils.git"
[tool.semantic_release]
branch = "main"
build_command = false
upload_to_repository = false
upload_to_release = false
version_variable = ["setup.py:__version__", "ctrlutils/__init__.py:__version__"]
version_pattern = ["CMakeLists.txt:VERSION {version}$"]
version_toml = ["pyproject.toml:project.version"]
[tool.cibuildwheel]
skip = ["cp36-*", "pp*", "*-musllinux*"]
[tool.cibuildwheel.linux]
archs = ["auto64"]
[tool.cibuildwheel.macos]
archs = ["universal2"]
[tool.cibuildwheel.macos.environment]
CMAKE_OSX_ARCHITECTURES = "arm64;x86_64"
MACOSX_DEPLOYMENT_TARGET = "10.14"