|
1 |
| -# [build-system] |
2 |
| -# requires = ["setuptools", "wheel"] |
3 |
| -# build-backend = "setuptools.build_meta:__legacy__" |
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "ctrlutils" |
| 7 | +version = "1.4.2" |
| 8 | +authors = [ |
| 9 | + { name = "Toki Migimatsu", email = "[email protected]"} |
| 10 | +] |
| 11 | +description = "Python robot control utils" |
| 12 | +license = {file = "LICENSE"} |
| 13 | +readme = "README.md" |
| 14 | +requires-python = ">=3.7" |
| 15 | +classifiers = [ |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: OS Independent" |
| 19 | +] |
| 20 | +dependencies = ["numpy", "redis"] |
| 21 | + |
| 22 | +[project.urls] |
| 23 | +Homepage = "https://github.com/tmigimatsu/ctrl-utils.git" |
4 | 24 |
|
5 | 25 | [tool.semantic_release]
|
6 | 26 | branch = "main"
|
7 | 27 | build_command = false
|
8 | 28 | upload_to_repository = false
|
9 | 29 | upload_to_release = false
|
10 |
| -version_variable = [ |
11 |
| - "setup.py:__version__", |
12 |
| - "ctrlutils/__init__.py:__version__", |
13 |
| -] |
14 |
| -version_pattern = [ |
15 |
| - "CMakeLists.txt:VERSION {version}$", |
16 |
| -] |
| 30 | +version_variable = ["setup.py:__version__", "ctrlutils/__init__.py:__version__"] |
| 31 | +version_pattern = ["CMakeLists.txt:VERSION {version}$"] |
| 32 | +version_toml = ["pyproject.toml:project.version"] |
17 | 33 |
|
18 | 34 | [tool.cibuildwheel]
|
19 |
| -skip = [ |
20 |
| - "pp*", |
21 |
| - "*-musllinux*", |
22 |
| -] |
| 35 | +skip = ["cp36-*", "pp*", "*-musllinux*"] |
23 | 36 |
|
24 | 37 | [tool.cibuildwheel.linux]
|
25 | 38 | archs = ["auto64"]
|
26 | 39 |
|
27 | 40 | [tool.cibuildwheel.macos]
|
28 | 41 | archs = ["universal2"]
|
29 |
| -environment = { CMAKE_OSX_ARCHITECTURES="arm64;x86_64", MACOSX_DEPLOYMENT_TARGET="10.14" } |
| 42 | + |
| 43 | +[tool.cibuildwheel.macos.environment] |
| 44 | +CMAKE_OSX_ARCHITECTURES = "arm64;x86_64" |
| 45 | +MACOSX_DEPLOYMENT_TARGET = "10.14" |
0 commit comments