cscope 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.
- cscope-0.0.0/PKG-INFO +21 -0
- cscope-0.0.0/README.md +6 -0
- cscope-0.0.0/pyproject.toml +23 -0
- cscope-0.0.0/src/cscope/__init__.py +6 -0
cscope-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cscope
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — name reserved for C-Scope (runtime causal-trace tooling). Not yet released.
|
|
5
|
+
Author: enikok
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: causal,debugging,observability,tracing
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# cscope
|
|
17
|
+
|
|
18
|
+
Placeholder release reserving the `cscope` name on PyPI.
|
|
19
|
+
|
|
20
|
+
**C-Scope is not yet released.** This package contains no functionality.
|
|
21
|
+
A real release with the actual tooling will follow.
|
cscope-0.0.0/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cscope"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder — name reserved for C-Scope (runtime causal-trace tooling). Not yet released."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "enikok" }]
|
|
13
|
+
keywords = ["tracing", "observability", "causal", "debugging"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3.10",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = ["src/cscope"]
|