-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 1.13 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "piqrypt-crewai-integration"
version = "1.1.0"
description = "PiQrypt cryptographic audit trail bridge for CrewAI"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "PiQrypt Contributors", email = "contact@piqrypt.com"}
]
requires-python = ">=3.9"
keywords = ["cryptography", "crewai", "audit", "ai-agents", "aiss", "compliance"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"piqrypt>=1.8.6",
"crewai>=0.28.0",
]
[project.urls]
Homepage = "https://github.com/piqrypt/piqrypt-crewai-integration"
Documentation = "https://github.com/piqrypt/piqrypt-crewai#readme"
Repository = "https://github.com/piqrypt/piqrypt-crewai"
"Bug Tracker" = "https://github.com/piqrypt/piqrypt/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["piqrypt_crewai*"]