bt-publishing-test 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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: bt-publishing-test
3
+ Version: 0.0.1
4
+ Summary: Braintrust test package. Used only to validate release workflows end-to-end. Not a real package; do not use.
5
+ Author-email: Braintrust <info@braintrust.dev>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Repository, https://github.com/braintrustdata/sdk-actions
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # bt-publishing-test (Python)
12
+
13
+ Braintrust test package. Used only to validate the Python release workflow
14
+ (`.github/workflows/release-py.yml`) end-to-end against PyPI. **Not a real
15
+ package; do not use.**
@@ -0,0 +1,5 @@
1
+ # bt-publishing-test (Python)
2
+
3
+ Braintrust test package. Used only to validate the Python release workflow
4
+ (`.github/workflows/release-py.yml`) end-to-end against PyPI. **Not a real
5
+ package; do not use.**
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "bt-publishing-test"
7
+ description = "Braintrust test package. Used only to validate release workflows end-to-end. Not a real package; do not use."
8
+ readme = "README.md"
9
+ license = "Apache-2.0"
10
+ requires-python = ">=3.9"
11
+ authors = [{ name = "Braintrust", email = "info@braintrust.dev" }]
12
+ dynamic = ["version"]
13
+
14
+ [project.urls]
15
+ Repository = "https://github.com/braintrustdata/sdk-actions"
16
+
17
+ # Mirrors the real SDKs: version is sourced from a standalone version.py module,
18
+ # read by the release action's read-version step too.
19
+ [tool.setuptools.dynamic]
20
+ version = { attr = "bt_publishing_test.version.VERSION" }
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ from .version import VERSION
2
+
3
+ __version__ = VERSION
@@ -0,0 +1 @@
1
+ VERSION = "0.0.1"
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: bt-publishing-test
3
+ Version: 0.0.1
4
+ Summary: Braintrust test package. Used only to validate release workflows end-to-end. Not a real package; do not use.
5
+ Author-email: Braintrust <info@braintrust.dev>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Repository, https://github.com/braintrustdata/sdk-actions
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # bt-publishing-test (Python)
12
+
13
+ Braintrust test package. Used only to validate the Python release workflow
14
+ (`.github/workflows/release-py.yml`) end-to-end against PyPI. **Not a real
15
+ package; do not use.**
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/bt_publishing_test/__init__.py
4
+ src/bt_publishing_test/version.py
5
+ src/bt_publishing_test.egg-info/PKG-INFO
6
+ src/bt_publishing_test.egg-info/SOURCES.txt
7
+ src/bt_publishing_test.egg-info/dependency_links.txt
8
+ src/bt_publishing_test.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ bt_publishing_test