tracebloc 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.
- tracebloc-0.0.1/PKG-INFO +42 -0
- tracebloc-0.0.1/README.md +23 -0
- tracebloc-0.0.1/license.txt +7 -0
- tracebloc-0.0.1/pyproject.toml +31 -0
- tracebloc-0.0.1/setup.cfg +4 -0
- tracebloc-0.0.1/tracebloc/__init__.py +18 -0
- tracebloc-0.0.1/tracebloc.egg-info/PKG-INFO +42 -0
- tracebloc-0.0.1/tracebloc.egg-info/SOURCES.txt +8 -0
- tracebloc-0.0.1/tracebloc.egg-info/dependency_links.txt +1 -0
- tracebloc-0.0.1/tracebloc.egg-info/top_level.txt +1 -0
tracebloc-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tracebloc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved PyPI name. The tracebloc SDK is published as tracebloc_package.
|
|
5
|
+
Author-email: tracebloc <lukas@tracebloc.io>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/tracebloc/tracebloc-py-package
|
|
8
|
+
Project-URL: Source, https://github.com/tracebloc/tracebloc-py-package
|
|
9
|
+
Project-URL: Real package, https://pypi.org/project/tracebloc_package/
|
|
10
|
+
Keywords: tracebloc,placeholder
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: license.txt
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# tracebloc
|
|
21
|
+
|
|
22
|
+
This PyPI distribution is a reserved placeholder owned by tracebloc. It contains no functional code.
|
|
23
|
+
|
|
24
|
+
The tracebloc SDK is published under the distribution name **`tracebloc_package`**:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install tracebloc_package
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
With framework extras:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install 'tracebloc_package[pytorch]'
|
|
34
|
+
pip install 'tracebloc_package[tensorflow]'
|
|
35
|
+
pip install 'tracebloc_package[sklearn]'
|
|
36
|
+
pip install 'tracebloc_package[huggingface]'
|
|
37
|
+
pip install 'tracebloc_package[boosting]'
|
|
38
|
+
pip install 'tracebloc_package[survival]'
|
|
39
|
+
pip install 'tracebloc_package[all]'
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Source, issues, and documentation: https://github.com/tracebloc/tracebloc-py-package
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# tracebloc
|
|
2
|
+
|
|
3
|
+
This PyPI distribution is a reserved placeholder owned by tracebloc. It contains no functional code.
|
|
4
|
+
|
|
5
|
+
The tracebloc SDK is published under the distribution name **`tracebloc_package`**:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install tracebloc_package
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
With framework extras:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install 'tracebloc_package[pytorch]'
|
|
15
|
+
pip install 'tracebloc_package[tensorflow]'
|
|
16
|
+
pip install 'tracebloc_package[sklearn]'
|
|
17
|
+
pip install 'tracebloc_package[huggingface]'
|
|
18
|
+
pip install 'tracebloc_package[boosting]'
|
|
19
|
+
pip install 'tracebloc_package[survival]'
|
|
20
|
+
pip install 'tracebloc_package[all]'
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Source, issues, and documentation: https://github.com/tracebloc/tracebloc-py-package
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2021 Tracebloc
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tracebloc"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved PyPI name. The tracebloc SDK is published as tracebloc_package."
|
|
9
|
+
license = "MIT"
|
|
10
|
+
license-files = ["license.txt"]
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "tracebloc", email = "lukas@tracebloc.io" },
|
|
15
|
+
]
|
|
16
|
+
keywords = ["tracebloc", "placeholder"]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 1 - Planning",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://github.com/tracebloc/tracebloc-py-package"
|
|
26
|
+
Source = "https://github.com/tracebloc/tracebloc-py-package"
|
|
27
|
+
"Real package" = "https://pypi.org/project/tracebloc_package/"
|
|
28
|
+
|
|
29
|
+
[tool.setuptools.packages.find]
|
|
30
|
+
where = ["."]
|
|
31
|
+
include = ["tracebloc*"]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Reserved PyPI placeholder for the `tracebloc` distribution name.
|
|
2
|
+
|
|
3
|
+
The tracebloc SDK is distributed as `tracebloc_package`:
|
|
4
|
+
|
|
5
|
+
pip install tracebloc_package
|
|
6
|
+
|
|
7
|
+
See https://github.com/tracebloc/tracebloc-py-package
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import warnings
|
|
11
|
+
|
|
12
|
+
warnings.warn(
|
|
13
|
+
"The PyPI distribution `tracebloc` is a reserved name placeholder and "
|
|
14
|
+
"contains no functional code. Install `tracebloc_package` instead "
|
|
15
|
+
"(see https://github.com/tracebloc/tracebloc-py-package).",
|
|
16
|
+
UserWarning,
|
|
17
|
+
stacklevel=2,
|
|
18
|
+
)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tracebloc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved PyPI name. The tracebloc SDK is published as tracebloc_package.
|
|
5
|
+
Author-email: tracebloc <lukas@tracebloc.io>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/tracebloc/tracebloc-py-package
|
|
8
|
+
Project-URL: Source, https://github.com/tracebloc/tracebloc-py-package
|
|
9
|
+
Project-URL: Real package, https://pypi.org/project/tracebloc_package/
|
|
10
|
+
Keywords: tracebloc,placeholder
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: license.txt
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# tracebloc
|
|
21
|
+
|
|
22
|
+
This PyPI distribution is a reserved placeholder owned by tracebloc. It contains no functional code.
|
|
23
|
+
|
|
24
|
+
The tracebloc SDK is published under the distribution name **`tracebloc_package`**:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install tracebloc_package
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
With framework extras:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install 'tracebloc_package[pytorch]'
|
|
34
|
+
pip install 'tracebloc_package[tensorflow]'
|
|
35
|
+
pip install 'tracebloc_package[sklearn]'
|
|
36
|
+
pip install 'tracebloc_package[huggingface]'
|
|
37
|
+
pip install 'tracebloc_package[boosting]'
|
|
38
|
+
pip install 'tracebloc_package[survival]'
|
|
39
|
+
pip install 'tracebloc_package[all]'
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Source, issues, and documentation: https://github.com/tracebloc/tracebloc-py-package
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tracebloc
|