-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.74 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (51 loc) · 1.74 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
#!/usr/bin/env python3
"""
Setup script for HELIX-TTD-DBC-SUITCASE v0.3
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="helix-ttd-dbc-suitcase",
version="0.3.1",
author="Stephen Hope",
author_email="helix.project.ai@helixprojectai.com",
description="The missing identity & custody primitive for sovereign AI agents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/helixprojectai-code/HELIX-TTD-DBC-SUITCASE-v0.3",
# 1. FIND THE CLI PACKAGE (Crucial for cli/dbc_suitcase.py)
packages=find_packages(),
# 2. INCLUDE THE ROOT SCRIPT (Crucial for helix.py)
py_modules=["helix"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
],
python_requires=">=3.7",
install_requires=[
"cryptography>=41.0.0",
"colorama>=0.4.6",
"rich>=13.0.0",
"streamlit>=1.30.0",
],
entry_points={
"console_scripts": [
"helix=helix:main",
],
},
include_package_data=True,
package_data={
"": ["*.md", "*.txt", "*.json"],
},
)