tserve 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.
- tserve-0.0.0/.gitignore +1 -0
- tserve-0.0.0/PKG-INFO +13 -0
- tserve-0.0.0/README.md +1 -0
- tserve-0.0.0/pyproject.toml +19 -0
- tserve-0.0.0/src/tserve/__init__.py +4 -0
- tserve-0.0.0/uv.lock +8 -0
tserve-0.0.0/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*
|
tserve-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: tserve
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for the sktime tserve inference server. Not for production use.
|
|
5
|
+
Project-URL: Homepage, https://github.com/sktime/tserve
|
|
6
|
+
Author-email: Your Name <you@example.com>
|
|
7
|
+
License-Expression: BSD-3-Clause
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
Name reservation for `tserve`.
|
tserve-0.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name reservation for `tserve`.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tserve"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder for the sktime tserve inference server. Not for production use."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "BSD-3-Clause"
|
|
11
|
+
authors = [{name = "Your Name", email = "you@example.com"}]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/sktime/tserve"
|