-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 935 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 935 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
from setuptools import setup, find_packages
setup(
name="computeid-sdk",
version="1.1.1",
description="Cryptographic identity for AI compute infrastructure and agentic AI systems",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="ComputeID",
author_email="hello@compute-id.com",
url="https://github.com/trustedaicompute-ops/computeid-sdk",
py_modules=["computeid"],
install_requires=["requests>=2.28.0"],
python_requires=">=3.8",
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",
],
keywords="gpu identity certificates quantum-safe ai agents security cryptography",
)