rtemis 0.1.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.
- rtemis-0.1.0/.github/workflows/release.yml +21 -0
- rtemis-0.1.0/.gitignore +29 -0
- rtemis-0.1.0/.python-version +1 -0
- rtemis-0.1.0/LICENSE +30 -0
- rtemis-0.1.0/PKG-INFO +53 -0
- rtemis-0.1.0/README.md +35 -0
- rtemis-0.1.0/pyproject.toml +33 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
release:
|
|
11
|
+
name: Build and publish to PyPI
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
environment: pypi
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write
|
|
16
|
+
contents: read
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v7
|
|
19
|
+
- uses: astral-sh/setup-uv@v10.1.0
|
|
20
|
+
- run: uv build
|
|
21
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
rtemis-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Dev
|
|
2
|
+
__dev/
|
|
3
|
+
|
|
4
|
+
# macOS
|
|
5
|
+
.DS_Store
|
|
6
|
+
|
|
7
|
+
# VS Code
|
|
8
|
+
.vscode/
|
|
9
|
+
*.code-workspace
|
|
10
|
+
|
|
11
|
+
# Zed
|
|
12
|
+
.zed/
|
|
13
|
+
|
|
14
|
+
# Python
|
|
15
|
+
__pycache__/
|
|
16
|
+
*.py[cod]
|
|
17
|
+
.venv/
|
|
18
|
+
dist/
|
|
19
|
+
build/
|
|
20
|
+
*.egg-info/
|
|
21
|
+
|
|
22
|
+
# Tooling
|
|
23
|
+
.ruff_cache/
|
|
24
|
+
.pytest_cache/
|
|
25
|
+
.ty_cache/
|
|
26
|
+
|
|
27
|
+
# OS
|
|
28
|
+
.DS_Store
|
|
29
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
rtemis-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016-2026, E.D. Gennatas
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
Redistribution and use in source and binary forms, with or without
|
|
8
|
+
modification, are permitted provided that the following conditions are met:
|
|
9
|
+
|
|
10
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
11
|
+
list of conditions and the following disclaimer.
|
|
12
|
+
|
|
13
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
14
|
+
this list of conditions and the following disclaimer in the documentation
|
|
15
|
+
and/or other materials provided with the distribution.
|
|
16
|
+
|
|
17
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
18
|
+
contributors may be used to endorse or promote products derived from
|
|
19
|
+
this software without specific prior written permission.
|
|
20
|
+
|
|
21
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
22
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
23
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
24
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
25
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
26
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
27
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
28
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
29
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
30
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
rtemis-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: rtemis
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The rtemis ecosystem for Python
|
|
5
|
+
Project-URL: Homepage, https://rtemis.org
|
|
6
|
+
Project-URL: Repository, https://github.com/rtemis-org/rtemis-py
|
|
7
|
+
Project-URL: Issues, https://github.com/rtemis-org/rtemis-py/issues
|
|
8
|
+
Author-email: "E.D. Gennatas" <gennatas@gmail.com>
|
|
9
|
+
License-Expression: BSD-3-Clause
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: data science,machine learning,rtemis,visualization
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Requires-Python: >=3.13
|
|
16
|
+
Requires-Dist: rtemis-a3>=0.2
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# rtemis
|
|
20
|
+
|
|
21
|
+
The [rtemis](https://rtemis.org) ecosystem for Python.
|
|
22
|
+
|
|
23
|
+
This distribution ships no code of its own. It is a metapackage: installing it
|
|
24
|
+
pulls in the rtemis Python packages, each of which occupies a slot in the shared
|
|
25
|
+
`rtemis` namespace.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install rtemis
|
|
29
|
+
# or
|
|
30
|
+
uv add rtemis
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Packages
|
|
34
|
+
|
|
35
|
+
| Distribution | Module | Description |
|
|
36
|
+
| --- | --- | --- |
|
|
37
|
+
| [`rtemis-a3`](https://github.com/rtemis-org/a3) | `rtemis.a3` | Amino Acid Annotation (A3) format |
|
|
38
|
+
|
|
39
|
+
Individual packages can always be installed on their own:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
uv add rtemis-a3
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Namespace
|
|
46
|
+
|
|
47
|
+
The `rtemis` namespace is a [PEP 420](https://peps.python.org/pep-0420/)
|
|
48
|
+
implicit namespace package. No distribution in the ecosystem — this one
|
|
49
|
+
included — may ship `rtemis/__init__.py`; doing so would shadow every sibling.
|
|
50
|
+
|
|
51
|
+
## License
|
|
52
|
+
|
|
53
|
+
BSD-3-Clause — same as the R package. See [LICENSE](LICENSE).
|
rtemis-0.1.0/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# rtemis
|
|
2
|
+
|
|
3
|
+
The [rtemis](https://rtemis.org) ecosystem for Python.
|
|
4
|
+
|
|
5
|
+
This distribution ships no code of its own. It is a metapackage: installing it
|
|
6
|
+
pulls in the rtemis Python packages, each of which occupies a slot in the shared
|
|
7
|
+
`rtemis` namespace.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install rtemis
|
|
11
|
+
# or
|
|
12
|
+
uv add rtemis
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Packages
|
|
16
|
+
|
|
17
|
+
| Distribution | Module | Description |
|
|
18
|
+
| --- | --- | --- |
|
|
19
|
+
| [`rtemis-a3`](https://github.com/rtemis-org/a3) | `rtemis.a3` | Amino Acid Annotation (A3) format |
|
|
20
|
+
|
|
21
|
+
Individual packages can always be installed on their own:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv add rtemis-a3
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Namespace
|
|
28
|
+
|
|
29
|
+
The `rtemis` namespace is a [PEP 420](https://peps.python.org/pep-0420/)
|
|
30
|
+
implicit namespace package. No distribution in the ecosystem — this one
|
|
31
|
+
included — may ship `rtemis/__init__.py`; doing so would shadow every sibling.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
BSD-3-Clause — same as the R package. See [LICENSE](LICENSE).
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "rtemis"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "The rtemis ecosystem for Python"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.13"
|
|
7
|
+
license = "BSD-3-Clause"
|
|
8
|
+
license-files = ["LICENSE"]
|
|
9
|
+
authors = [{ name = "E.D. Gennatas", email = "gennatas@gmail.com" }]
|
|
10
|
+
keywords = ["machine learning", "data science", "visualization", "rtemis"]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Intended Audience :: Science/Research",
|
|
13
|
+
"Programming Language :: Python :: 3.13",
|
|
14
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
15
|
+
]
|
|
16
|
+
dependencies = [
|
|
17
|
+
"rtemis-a3>=0.2",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://rtemis.org"
|
|
22
|
+
Repository = "https://github.com/rtemis-org/rtemis-py"
|
|
23
|
+
Issues = "https://github.com/rtemis-org/rtemis-py/issues"
|
|
24
|
+
|
|
25
|
+
[build-system]
|
|
26
|
+
requires = ["hatchling"]
|
|
27
|
+
build-backend = "hatchling.build"
|
|
28
|
+
|
|
29
|
+
[tool.hatch.build.targets.wheel]
|
|
30
|
+
# Metapackage: ships no modules of its own. The `rtemis` namespace is a PEP 420
|
|
31
|
+
# implicit namespace owned collectively by rtemis-ml, rtemis-a3, etc. This
|
|
32
|
+
# distribution must never contain rtemis/__init__.py, or it would shadow them.
|
|
33
|
+
bypass-selection = true
|