-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 946 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nod-linter"
version = "2.1.0"
description = "A compliance-as-code gatekeeper for AI specifications."
readme = "README.md"
authors = [
{ name = "Your Name", email = "your.email@example.com" },
]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3",
]
keywords = ["ai", "compliance", "linter", "security", "nist", "eu-ai-act"]
dependencies = [
"PyYAML>=6.0",
]
requires-python = ">=3.10"
[project.scripts]
nod = "nod.cli:main"
[project.urls]
"Homepage" = "https://github.com/mraml/nod"
"Bug Tracker" = "https://github.com/mraml/nod/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
nod = ["defaults/*.yaml"]