infixspeed 0.0.0__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.
- infixspeed-0.0.0/.gitignore +107 -0
- infixspeed-0.0.0/PKG-INFO +18 -0
- infixspeed-0.0.0/README.md +9 -0
- infixspeed-0.0.0/pyproject.toml +18 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
*.egg
|
|
8
|
+
|
|
9
|
+
# Virtual environments
|
|
10
|
+
.venv
|
|
11
|
+
venv
|
|
12
|
+
env/
|
|
13
|
+
|
|
14
|
+
# IDE
|
|
15
|
+
.vscode
|
|
16
|
+
.vscode/
|
|
17
|
+
.idea/
|
|
18
|
+
*.swp
|
|
19
|
+
*.swo
|
|
20
|
+
*~
|
|
21
|
+
|
|
22
|
+
# OS
|
|
23
|
+
.DS_Store
|
|
24
|
+
Thumbs.db
|
|
25
|
+
|
|
26
|
+
# Testing / Coverage
|
|
27
|
+
.pytest_cache/
|
|
28
|
+
htmlcov/
|
|
29
|
+
.coverage
|
|
30
|
+
coverage.xml
|
|
31
|
+
|
|
32
|
+
# Build artifacts
|
|
33
|
+
*.whl
|
|
34
|
+
|
|
35
|
+
# Atlas
|
|
36
|
+
backend/migrations/atlas.sum
|
|
37
|
+
backend/atlas.local.hcl
|
|
38
|
+
|
|
39
|
+
# Node.js
|
|
40
|
+
node_modules/
|
|
41
|
+
*.tsbuildinfo
|
|
42
|
+
|
|
43
|
+
# Rust
|
|
44
|
+
target/
|
|
45
|
+
Cargo.lock
|
|
46
|
+
|
|
47
|
+
# Logs
|
|
48
|
+
*.log
|
|
49
|
+
|
|
50
|
+
# Worktrees
|
|
51
|
+
.worktrees/
|
|
52
|
+
|
|
53
|
+
# Claude Code / IDE integrations
|
|
54
|
+
.ai/
|
|
55
|
+
.opencode/
|
|
56
|
+
.agents/
|
|
57
|
+
|
|
58
|
+
# Atlas
|
|
59
|
+
backend/migrations/atlas.sum
|
|
60
|
+
backend/atlas.local.hcl
|
|
61
|
+
|
|
62
|
+
#docs
|
|
63
|
+
docs/design/
|
|
64
|
+
|
|
65
|
+
# Postman - globals may contain sensitive values
|
|
66
|
+
postman/globals/
|
|
67
|
+
|
|
68
|
+
# Deployment - local configs with secrets
|
|
69
|
+
.envrc
|
|
70
|
+
.env.local
|
|
71
|
+
.env.development.local
|
|
72
|
+
deploy/.env.local
|
|
73
|
+
deploy/config/.env.local
|
|
74
|
+
values-local.yaml
|
|
75
|
+
|
|
76
|
+
# Deployment - SSH keys (if stored locally for development)
|
|
77
|
+
deploy/keys/
|
|
78
|
+
!deploy/keys/.gitkeep
|
|
79
|
+
/.claude/*
|
|
80
|
+
.claude
|
|
81
|
+
!/.claude/CLAUDE.md
|
|
82
|
+
!/.claude/skills/
|
|
83
|
+
.claude/skills/lark-cli-bot/
|
|
84
|
+
.claude/skills/project-tasks/
|
|
85
|
+
.claude/skills/bug-killer/
|
|
86
|
+
|
|
87
|
+
/docs/figma-data
|
|
88
|
+
# CocoIndex Code (ccc)
|
|
89
|
+
/.cocoindex_code/
|
|
90
|
+
|
|
91
|
+
# Docs drift check report (generated by CI)
|
|
92
|
+
docs-drift-report.json
|
|
93
|
+
/.serena
|
|
94
|
+
|
|
95
|
+
scripts/official_assets/sql
|
|
96
|
+
|
|
97
|
+
.worktrees/
|
|
98
|
+
deploy/infra/envoy-ai-gateway/charts/
|
|
99
|
+
deploy/infra/envoy-ai-gateway/Chart.lock
|
|
100
|
+
|
|
101
|
+
# mock
|
|
102
|
+
mock-data/
|
|
103
|
+
|
|
104
|
+
# ── 隧道/集群临时文件(不提交)──
|
|
105
|
+
scripts/tunnel/*.pid
|
|
106
|
+
scripts/tunnel/*kubeconfig
|
|
107
|
+
scripts/tunnel/*-kubeconfig
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: infixspeed
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved name to prevent confusion with the official InfiXspeed CLI. Placeholder, contains no code.
|
|
5
|
+
License: Proprietary
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: Other/Proprietary License
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# infixspeed
|
|
11
|
+
|
|
12
|
+
This name is reserved by InfiX to prevent confusion with the official
|
|
13
|
+
InfiXspeed platform CLI, which is published under the name `infixspeed-cli`.
|
|
14
|
+
|
|
15
|
+
**This package is a placeholder. It contains no code and installing it does nothing.**
|
|
16
|
+
|
|
17
|
+
If you are an InfiXspeed user and need the CLI, please contact your InfiX
|
|
18
|
+
representative for access instructions.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# infixspeed
|
|
2
|
+
|
|
3
|
+
This name is reserved by InfiX to prevent confusion with the official
|
|
4
|
+
InfiXspeed platform CLI, which is published under the name `infixspeed-cli`.
|
|
5
|
+
|
|
6
|
+
**This package is a placeholder. It contains no code and installing it does nothing.**
|
|
7
|
+
|
|
8
|
+
If you are an InfiXspeed user and need the CLI, please contact your InfiX
|
|
9
|
+
representative for access instructions.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "infixspeed"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved name to prevent confusion with the official InfiXspeed CLI. Placeholder, contains no code."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Proprietary" }
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"License :: Other/Proprietary License",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
# No modules on purpose: this name is reserved only, nothing is ever shipped under it.
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
bypass-selection = true
|