-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.96 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
62
63
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gopal"
version = "1.0.0"
description = "GOPAL — the Rego policy library for AI compliance. 94 OPA policies across 15+ regulatory frameworks (EU AI Act, NIST AI RMF, aviation standards, FERPA/COPPA, fair lending) and 5 industry verticals."
readme = "README.md"
authors = [
{name = "Principled Evolution", email = "info@principledevolution.ai"},
{name = "Mantric", email = "info@mantric.com"},
]
license = "Apache-2.0"
keywords = [
"ai-governance",
"ai-compliance",
"ai-act",
"eu-ai-act",
"nist-ai-rmf",
"open-policy-agent",
"opa",
"rego",
"policy-as-code",
"regulatory-compliance",
"aviation-safety",
"ferpa",
"coppa",
"fair-lending",
"responsible-ai",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8"
dependencies = [
"opa-python>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/Principled-Evolution/gopal"
Repository = "https://github.com/Principled-Evolution/gopal"
Documentation = "https://github.com/Principled-Evolution/gopal#readme"
Issues = "https://github.com/Principled-Evolution/gopal/issues"
Changelog = "https://github.com/Principled-Evolution/gopal/blob/main/CHANGELOG.md"
"Consumer (AICertify)" = "https://github.com/Principled-Evolution/aicertify"
[tool.setuptools]
packages = ["gopal"]
[tool.setuptools.package-data]
gopal = ["**/*.rego"]