forked from RainbowRobotics/rbpodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.54 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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11", "pybind11-stubgen", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "rbpodo"
version = "0.10.2"
description = "A client library for Rainbow Robotics' cobot RB-Series"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Keunjun Choi", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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",
]
[project.optional-dependencies]
test = ["pytest"]
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
wheel.license-files = ["LICENSE"]
cmake.build-type = "Release"
[tool.scikit-build.cmake.define]
BUILD_PYTHON_BINDINGS = "ON"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$major.$minor.$patch$prerelease"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
change_type_map = { "BREAKING CHANGE" = "❗ BREAKING CHANGE", "fix" = "🐛 Fixes", "feat" = "✨ Features", "docs" = "📖 Document", "style" = "👓 Style", "refactor" = "♻️ Refactor", "perf" = "⚡ Performance", "test" = "💯 Test", "build" = "🏗️ Build", "ci" = "🤖 CI" }