dao-protocol 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
*.pyo
|
|
5
|
+
*.egg-info/
|
|
6
|
+
dist/
|
|
7
|
+
build/
|
|
8
|
+
*.whl
|
|
9
|
+
*.tar.gz
|
|
10
|
+
|
|
11
|
+
# Virtual environments
|
|
12
|
+
venv/
|
|
13
|
+
.venv/
|
|
14
|
+
|
|
15
|
+
# IDE
|
|
16
|
+
.idea/
|
|
17
|
+
.vscode/
|
|
18
|
+
*.swp
|
|
19
|
+
*.swo
|
|
20
|
+
|
|
21
|
+
# OS files
|
|
22
|
+
.DS_Store
|
|
23
|
+
Thumbs.db
|
|
24
|
+
|
|
25
|
+
# Environment variables
|
|
26
|
+
.env
|
|
27
|
+
.env.local
|
|
28
|
+
|
|
29
|
+
# PyPI squatting scripts & placeholder packages (internal use only)
|
|
30
|
+
scripts/placeholders/
|
|
31
|
+
scripts/squat_*.py
|
|
32
|
+
scripts/pypi_squatter*.py
|
|
33
|
+
scripts/wave3_squatter.py
|
|
34
|
+
scripts/check_loop_names.py
|
|
35
|
+
scripts/squat_loop.py
|
|
36
|
+
scripts/squatter_result.txt
|
|
37
|
+
scripts/*_available.txt
|
|
38
|
+
scripts/*_success.txt
|
|
39
|
+
|
|
40
|
+
# Node
|
|
41
|
+
node_modules/
|
|
42
|
+
|
|
43
|
+
# Frontend build output
|
|
44
|
+
frontend/dist/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dao-protocol
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for the Noosphere Consciousness Evolution Loop.
|
|
5
|
+
Project-URL: Homepage, https://github.com/JinNing6/Noosphere
|
|
6
|
+
Author-email: JinNing6 <noosphere@consciousness.network>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# dao-protocol
|
|
12
|
+
|
|
13
|
+
Reserved for the Noosphere Consciousness Evolution Loop.
|
|
14
|
+
|
|
15
|
+
- [Noosphere](https://github.com/JinNing6/Noosphere)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dao-protocol"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved for the Noosphere Consciousness Evolution Loop."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "JinNing6", email = "noosphere@consciousness.network" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/JinNing6/Noosphere"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["dao_protocol"]
|