-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 770 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""CIEL/Ω Quantum Consciousness Suite
Copyright (c) 2025 Adrian Lipa / Intention Lab
Licensed under the CIEL Research Non-Commercial License v1.1.
"""
from setuptools import find_packages, setup
setup(
name="ciel",
version="0.1.0",
packages=find_packages(exclude=["ext", "ext.*"]),
install_requires=["numpy", "scipy", "matplotlib", "networkx", "sympy", "pandas"],
entry_points={
"console_scripts": [
"ciel-engine=ciel.cli:run_engine",
"ciel-smoke=ciel.cli:smoke_test",
]
},
description="CIEL — Consciousness-Integrated Emergent Logic (organized from project drafts)",
author="Adrian Lipa",
license="CIEL-Research-NonCommercial-1.1",
)