-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 968 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (33 loc) · 968 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "technocore-worker"
version = "0.2.0"
description = "Signed Technocore worker for bounded contribution checks."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
dependencies = ["cryptography>=50,<51"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Security",
]
[project.urls]
Repository = "https://github.com/mnsis/technocore-worker"
Issues = "https://github.com/mnsis/technocore-worker/issues"
[project.optional-dependencies]
dev = ["pytest>=9,<10", "ruff>=0.16,<1", "mypy>=2.3,<3", "pip-audit>=2.9,<3"]
[project.scripts]
technocore-worker = "worker.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.mypy]
python_version = "3.12"
strict = true
[tool.setuptools.packages.find]
include = ["worker*"]