-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "ix-operator"
version = "0.1.0"
description = "Secure operator platform for autonomous agents."
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = { file = "LICENSE" }
authors = [
{ name = "Bryce Lovell" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Security",
"Topic :: Software Development :: Libraries"
]
dependencies = []
[project.scripts]
ix-operator = "ix_operator.__main__:main"
[project.optional-dependencies]
dev = [
"mypy>=1.11,<2.0",
"pytest>=8.3,<9.0",
"ruff>=0.6,<1.0"
]
[tool.maturin]
manifest-path = "crates/ix_crypto/Cargo.toml"
module-name = "ix_operator._ix_crypto_native"
python-source = "src"
bindings = "pyo3"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
no_implicit_optional = true
strict_equality = true
warn_unused_ignores = true