Spaces:
Running
Running
Create setup.cfg
Browse files
setup.cfg
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[metadata]
|
2 |
+
name = nexus-signal-engine
|
3 |
+
version = 1.0.0
|
4 |
+
author = Jonathan Harrison
|
5 |
+
author_email = [email protected]
|
6 |
+
description = Adversarially robust, forensic-grade, agent-driven AI signal analysis and memory engine.
|
7 |
+
long_description = file: README.md
|
8 |
+
long_description_content_type = text/markdown
|
9 |
+
url = https://github.com/Raiff1982/Nexus-signal-engine
|
10 |
+
license = MIT
|
11 |
+
keywords = AI, ethics, signal-analysis, adversarial, memory, audit, NLP, explainable-AI
|
12 |
+
classifiers =
|
13 |
+
Intended Audience :: Science/Research
|
14 |
+
Programming Language :: Python :: 3.8
|
15 |
+
Programming Language :: Python :: 3.9
|
16 |
+
Programming Language :: Python :: 3.10
|
17 |
+
Programming Language :: Python :: 3.11
|
18 |
+
Operating System :: OS Independent
|
19 |
+
License :: OSI Approved :: MIT License
|
20 |
+
Topic :: Scientific/Engineering :: Artificial Intelligence
|
21 |
+
Topic :: Security
|
22 |
+
|
23 |
+
[options]
|
24 |
+
packages = find:
|
25 |
+
python_requires = >=3.8
|
26 |
+
install_requires =
|
27 |
+
numpy>=1.22
|
28 |
+
rapidfuzz>=3.0.0
|
29 |
+
nltk>=3.8
|
30 |
+
filelock>=3.13
|
31 |
+
tenacity>=8.2.3
|