baton-sdk 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.
@@ -0,0 +1 @@
1
+ dist-work/
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: baton-sdk
3
+ Version: 0.0.0
4
+ Summary: Reserved name for the Baton project. The active package is baton-sdk.
5
+ Project-URL: Homepage, https://github.com/good-timing/baton
6
+ Author-email: Good Timing <ujwal@goodtiming.ai>
7
+ License: Apache-2.0
8
+ Keywords: baton,placeholder,reserved
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # baton-sdk
16
+
17
+ Reserved name for the [Baton](https://github.com/good-timing/baton) project.
18
+
19
+ The active package is **`baton-sdk`**:
20
+
21
+ ```sh
22
+ pip install baton-sdk
23
+ ```
24
+
25
+ This name is reserved to prevent typo-squatting and to leave room for future Baton tooling. If you reached this page expecting something else, see [https://github.com/good-timing/baton](https://github.com/good-timing/baton).
@@ -0,0 +1,11 @@
1
+ # baton-sdk
2
+
3
+ Reserved name for the [Baton](https://github.com/good-timing/baton) project.
4
+
5
+ The active package is **`baton-sdk`**:
6
+
7
+ ```sh
8
+ pip install baton-sdk
9
+ ```
10
+
11
+ This name is reserved to prevent typo-squatting and to leave room for future Baton tooling. If you reached this page expecting something else, see [https://github.com/good-timing/baton](https://github.com/good-timing/baton).
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "baton-sdk"
7
+ version = "0.0.0"
8
+ description = "Reserved name for the Baton project. The active package is baton-sdk."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "Good Timing", email = "ujwal@goodtiming.ai" }]
13
+ keywords = ["baton", "reserved", "placeholder"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/good-timing/baton"
@@ -0,0 +1,3 @@
1
+ """Reserved name for the Baton project. Install `baton-sdk` instead."""
2
+
3
+ __version__ = "0.0.0"