costfold 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.
- costfold-0.0.1/PKG-INFO +13 -0
- costfold-0.0.1/README.md +3 -0
- costfold-0.0.1/pyproject.toml +15 -0
- costfold-0.0.1/setup.cfg +4 -0
- costfold-0.0.1/src/costfold/__init__.py +1 -0
- costfold-0.0.1/src/costfold.egg-info/PKG-INFO +13 -0
- costfold-0.0.1/src/costfold.egg-info/SOURCES.txt +7 -0
- costfold-0.0.1/src/costfold.egg-info/dependency_links.txt +1 -0
- costfold-0.0.1/src/costfold.egg-info/top_level.txt +1 -0
costfold-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: costfold
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Costfold — see the AI cost of a pull request before you merge.
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://costfold.com
|
|
7
|
+
Project-URL: Source, https://github.com/costfold/costfold
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Costfold
|
|
12
|
+
|
|
13
|
+
GitHub App that comments on PRs with the estimated bill impact of prompt and model changes — see your AI bill before you merge.
|
costfold-0.0.1/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "costfold"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Costfold — see the AI cost of a pull request before you merge."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://costfold.com"
|
|
15
|
+
Source = "https://github.com/costfold/costfold"
|
costfold-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: costfold
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Costfold — see the AI cost of a pull request before you merge.
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://costfold.com
|
|
7
|
+
Project-URL: Source, https://github.com/costfold/costfold
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Costfold
|
|
12
|
+
|
|
13
|
+
GitHub App that comments on PRs with the estimated bill impact of prompt and model changes — see your AI bill before you merge.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
costfold
|