-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathsetup.cfg
More file actions
58 lines (50 loc) · 1.63 KB
/
setup.cfg
File metadata and controls
58 lines (50 loc) · 1.63 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
57
58
[metadata]
name = safla
version = attr: safla.__version__
description = Self-Aware Feedback Loop Algorithm - A sophisticated AI/ML system implementing autonomous learning and adaptation
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ruvnet/SAFLA
author = SAFLA Development Team
author_email = ruv@ruv.net
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Distributed Computing
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.packages.find]
exclude =
tests*
docs*
examples*
[options.entry_points]
console_scripts =
safla = safla.cli:main
safla-install = safla.installer:main
safla.plugins =
memory = safla.core.hybrid_memory:HybridMemoryArchitecture
metacognitive = safla.core.meta_cognitive_engine:MetaCognitiveEngine
safety = safla.core.safety_validation:SafetyValidationFramework
mcp = safla.core.mcp_orchestration:MCPOrchestrator
[options.package_data]
safla = py.typed, *.json, *.yaml, *.yml
[bdist_wheel]
universal = 0
[egg_info]
tag_build =
tag_date = 0