-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.05 KB
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
[build-system]
requires = ["setuptools>=65", "setuptools-rust>=1.8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kinic-py"
version = "0.1.2"
description = "Python bindings for the Kinic CLI Rust core"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { text = "Proprietary" }
authors = [{ name = "Kinic" }]
keywords = ["kinic", "internet-computer", "cli", "bindings"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
"pylate>=1.3.4",
]
# [project.urls]
# Homepage = "https://github.com/kiniclabs/kinic-cli"
# Issues = "https://github.com/kiniclabs/kinic-cli/issues"
[tool.setuptools]
package-dir = { "" = "python" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["python"]
exclude = ["tests"]
[[tool.setuptools-rust.ext-modules]]
target = "kinic_py._lib"
path = "Cargo.toml"
binding = "PyO3"
features = ["python-bindings"]