@aiacta-org/ai-citation-sdk 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +32 -2
- package/src/python/setup.py +45 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @aiacta-org/ai-citation-sdk
|
|
2
2
|
|
|
3
|
-
> Webhook receiver SDK for AIACTA citation events
|
|
3
|
+
> Webhook receiver SDK for [AIACTA](https://github.com/mobeloper/aiacta/blob/main/publications/AIACTA_FrameworkV1_0_EricMichel_2026March24.pdf) citation events. Verifies signatures, handles idempotency, and provides ready-to-use Express middleware (Proposal 2, §3.4).
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@aiacta-org/ai-citation-sdk)
|
|
6
6
|
[](https://pypi.org/project/ai-citation-sdk/)
|
package/package.json
CHANGED
|
@@ -1,8 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiacta-org/ai-citation-sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Webhook receiver SDK
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Webhook receiver SDK for AIACTA citation events. HMAC-SHA256 signature verification, idempotency, and Express middleware (AIACTA Proposal 2, §3.4)",
|
|
5
5
|
"author": "Eric Michel",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/aiacta-org/aiacta/tree/main/packages/ai-citation-sdk#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/aiacta-org/aiacta.git",
|
|
11
|
+
"directory": "packages/ai-citation-sdk"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/aiacta-org/aiacta/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"aiacta",
|
|
18
|
+
"ai-attribution",
|
|
19
|
+
"citation",
|
|
20
|
+
"citation-webhook",
|
|
21
|
+
"webhook",
|
|
22
|
+
"sdk",
|
|
23
|
+
"attribution",
|
|
24
|
+
"ai-transparency",
|
|
25
|
+
"content-attribution",
|
|
26
|
+
"publisher-rights",
|
|
27
|
+
"open-standard",
|
|
28
|
+
"hmac",
|
|
29
|
+
"signature-verification",
|
|
30
|
+
"idempotency",
|
|
31
|
+
"express-middleware",
|
|
32
|
+
"content-creators",
|
|
33
|
+
"ai-copyright",
|
|
34
|
+
"web-standard"
|
|
35
|
+
],
|
|
6
36
|
"main": "./src/node/index.js",
|
|
7
37
|
"scripts": {
|
|
8
38
|
"test": "jest"
|
package/src/python/setup.py
CHANGED
|
@@ -1,9 +1,51 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
|
+
|
|
2
3
|
setup(
|
|
3
4
|
name='ai-citation-sdk',
|
|
4
|
-
version='1.0.
|
|
5
|
-
description='AIACTA Citation Webhook SDK for Python (Proposal 2 §3.4)',
|
|
5
|
+
version='1.0.1',
|
|
6
|
+
description='AIACTA Citation Webhook SDK for Python — signature verification, idempotency, and retry handling (Proposal 2, §3.4)',
|
|
7
|
+
long_description=open('../../README.md', encoding='utf-8').read() if __import__('os').path.exists('../../README.md') else '',
|
|
8
|
+
long_description_content_type='text/markdown',
|
|
9
|
+
author='Eric Michel',
|
|
10
|
+
author_email='contact@aiacta.org',
|
|
11
|
+
url='https://github.com/aiacta-org/aiacta/tree/main/packages/ai-citation-sdk',
|
|
12
|
+
project_urls={
|
|
13
|
+
'Bug Tracker': 'https://github.com/aiacta-org/aiacta/issues',
|
|
14
|
+
'Source': 'https://github.com/aiacta-org/aiacta',
|
|
15
|
+
'Documentation': 'https://github.com/aiacta-org/aiacta/tree/main/packages/ai-citation-sdk#readme',
|
|
16
|
+
},
|
|
17
|
+
license='Apache-2.0',
|
|
6
18
|
packages=find_packages(),
|
|
7
19
|
python_requires='>=3.9',
|
|
8
|
-
install_requires=[
|
|
20
|
+
install_requires=[
|
|
21
|
+
'cryptography>=41.0',
|
|
22
|
+
'requests>=2.31',
|
|
23
|
+
],
|
|
24
|
+
keywords=[
|
|
25
|
+
'ai',
|
|
26
|
+
'aiacta',
|
|
27
|
+
'ai-attribution',
|
|
28
|
+
'citation',
|
|
29
|
+
'tracking',
|
|
30
|
+
'monitoring',
|
|
31
|
+
'webhook',
|
|
32
|
+
'sdk',
|
|
33
|
+
'hmac',
|
|
34
|
+
'signature-verification',
|
|
35
|
+
'content-attribution',
|
|
36
|
+
'publisher-rights',
|
|
37
|
+
'open-standard',
|
|
38
|
+
],
|
|
39
|
+
classifiers=[
|
|
40
|
+
'Development Status :: 5 - Production/Stable',
|
|
41
|
+
'Intended Audience :: Developers',
|
|
42
|
+
'License :: OSI Approved :: Apache Software License',
|
|
43
|
+
'Programming Language :: Python :: 3',
|
|
44
|
+
'Programming Language :: Python :: 3.9',
|
|
45
|
+
'Programming Language :: Python :: 3.10',
|
|
46
|
+
'Programming Language :: Python :: 3.11',
|
|
47
|
+
'Programming Language :: Python :: 3.12',
|
|
48
|
+
'Topic :: Internet :: WWW/HTTP',
|
|
49
|
+
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
50
|
+
],
|
|
9
51
|
)
|