-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.56 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiep-genome-sdk"
version = "1.0.0"
license = "Apache-2.0"
description = "AIEP GENOME SDK — zero-friction Python toolkit for building and adopting AIEP-compliant software"
readme = "README.md"
authors = [{ name = "AIEP Contributors" }]
requires-python = ">=3.9"
keywords = ["aiep", "evidence", "deterministic", "governance", "protocol"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Security :: Cryptography",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7", "jsonschema>=4"]
[project.urls]
"Repository" = "https://github.com/Phatfella/AIEP-GENOME-SDK"
"Changelog" = "https://github.com/Phatfella/AIEP-GENOME-SDK/blob/main/CHANGELOG.md"
"Patent" = "https://www.ipo.gov.uk/p-ipsum/Case/ApplicationNumber/GB2519711.2"
"AIEP Hub" = "https://aiep.dev"
[project.scripts]
aiep-genome = "aiep_genome.__main__:main"
aiep-verify = "aiep_genome.standalone_verify:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
aiep_genome = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]