-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.02 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cmake>=3.10",
"ninja", # Optional but recommended for faster builds
"scikit-build", # Helps with CMake integration
"cibuildwheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "robotmq"
version = "0.1.0"
authors = [{ name = "Yihuai Gao", email = "yihuai@stanford.edu" }]
description = "A light-weight and flexible Robot-centric Message Queue for Python applications"
dependencies = [
"pybind11", # For Python bindings
"numpy",
]
# requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/yihuai-gao/robot-message-queue"
[project.optional-dependencies]
examples = ["numpy", "psutil"]
[tool.setuptools]
packages = ["robotmq"]
package-data = { robotmq = [
"core/*.pyi",
"py/*.pyi",
"core/include/*",
"core/src/*",
"core/*.so",
"utils.py",
] }