aicostguard-dev 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,61 @@
1
+ # Dependencies
2
+ node_modules/
3
+ package-lock.json
4
+ yarn.lock
5
+ pnpm-lock.yaml
6
+
7
+ # Build outputs
8
+ dist/
9
+ build/
10
+ .next/
11
+ out/
12
+
13
+ # TypeScript
14
+ *.tsbuildinfo
15
+
16
+ # Environment variables
17
+ .env
18
+ .env.local
19
+ .env.development.local
20
+ .env.test.local
21
+ .env.production.local
22
+
23
+ # Firebase
24
+ .firebase/
25
+ firebase-debug.log
26
+ firebase-debug.*.log
27
+ firestore-debug.log
28
+ ui-debug.log
29
+
30
+ # IDE
31
+ .vscode/
32
+ .idea/
33
+ *.swp
34
+ *.swo
35
+ *~
36
+ .DS_Store
37
+
38
+ # Logs
39
+ logs/
40
+ *.log
41
+ npm-debug.log*
42
+ yarn-debug.log*
43
+ yarn-error.log*
44
+ lerna-debug.log*
45
+
46
+ # Testing
47
+ coverage/
48
+ .nyc_output/
49
+
50
+ # Temporary files
51
+ tmp/
52
+ temp/
53
+ *.tmp
54
+
55
+ # OS
56
+ Thumbs.db
57
+ .DS_Store
58
+
59
+ # Misc
60
+ .cache/
61
+ .parcel-cache/
@@ -0,0 +1,19 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+
17
+ Copyright 2026 AI Cost Guard
18
+
19
+ Full license text: https://www.apache.org/licenses/LICENSE-2.0
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: aicostguard-dev
3
+ Version: 0.0.1
4
+ Summary: Placeholder reserving the name for AI Cost Guard auto-instrumentation. The real package ships in v0.3.0b1+ — see homepage.
5
+ Project-URL: Homepage, https://aicostguard.dev
6
+ Project-URL: Repository, https://github.com/Vinodmurkute/ai-cost-guard
7
+ Author-email: AI Cost Guard <vinodmurkute@gmail.com>
8
+ License-Expression: Apache-2.0
9
+ License-File: LICENSE
10
+ Keywords: ai,anthropic,cost,finops,gemini,llm,openai,tracking
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+
24
+ # aicostguard-dev (placeholder)
25
+
26
+ This is a **name reservation** for the upcoming AI Cost Guard auto-instrumentation
27
+ package for Python.
28
+
29
+ The real package ships starting in **v0.3.0b1** with one-line auto-instrumentation
30
+ for OpenAI, Anthropic, Gemini, Cohere, Mistral, and OpenAI-compatible providers
31
+ (xAI, Groq, Together, Fireworks, Perplexity, DeepSeek, OpenRouter, Vercel AI Gateway).
32
+
33
+ **Don't install this version.** It's an empty placeholder. Wait for `aicostguard-dev>=0.3.0b1`.
34
+
35
+ - Homepage: https://aicostguard.dev
36
+ - Source: https://github.com/Vinodmurkute/ai-cost-guard
37
+ - License: Apache-2.0
@@ -0,0 +1,14 @@
1
+ # aicostguard-dev (placeholder)
2
+
3
+ This is a **name reservation** for the upcoming AI Cost Guard auto-instrumentation
4
+ package for Python.
5
+
6
+ The real package ships starting in **v0.3.0b1** with one-line auto-instrumentation
7
+ for OpenAI, Anthropic, Gemini, Cohere, Mistral, and OpenAI-compatible providers
8
+ (xAI, Groq, Together, Fireworks, Perplexity, DeepSeek, OpenRouter, Vercel AI Gateway).
9
+
10
+ **Don't install this version.** It's an empty placeholder. Wait for `aicostguard-dev>=0.3.0b1`.
11
+
12
+ - Homepage: https://aicostguard.dev
13
+ - Source: https://github.com/Vinodmurkute/ai-cost-guard
14
+ - License: Apache-2.0
@@ -0,0 +1,33 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.21"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aicostguard-dev"
7
+ version = "0.0.1"
8
+ description = "Placeholder reserving the name for AI Cost Guard auto-instrumentation. The real package ships in v0.3.0b1+ — see homepage."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "AI Cost Guard", email = "vinodmurkute@gmail.com" }]
13
+ keywords = ["openai", "anthropic", "gemini", "ai", "llm", "cost", "tracking", "finops"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ ]
26
+ dependencies = []
27
+
28
+ [project.urls]
29
+ Homepage = "https://aicostguard.dev"
30
+ Repository = "https://github.com/Vinodmurkute/ai-cost-guard"
31
+
32
+ [tool.hatch.build.targets.wheel]
33
+ packages = ["src/aicostguard_dev"]
@@ -0,0 +1,3 @@
1
+ """Placeholder. The real auto-instrumentation ships in v0.3.0b1+."""
2
+
3
+ __version__ = "0.0.1"