composables 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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Minjae Gwon
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: composables
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Composable primitives for Python.
|
|
5
|
+
Keywords: composable,primitives
|
|
6
|
+
Author: Minjae Gwon
|
|
7
|
+
Author-email: Minjae Gwon <betarixm@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Typing :: Typed
|
|
18
|
+
Requires-Python: >=3.12
|
|
19
|
+
Project-URL: Homepage, https://github.com/betarixm/composables
|
|
20
|
+
Project-URL: Repository, https://github.com/betarixm/composables
|
|
21
|
+
Project-URL: Issues, https://github.com/betarixm/composables/issues
|
|
22
|
+
Project-URL: Changelog, https://github.com/betarixm/composables/releases
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# composables
|
|
26
|
+
|
|
27
|
+
Composable primitives for Python. Requires Python 3.12 or newer.
|
|
28
|
+
|
|
29
|
+
The library is in its initial scaffolding stage; no public primitives are
|
|
30
|
+
implemented yet.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
After the first release is published to PyPI:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install composables
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The distribution includes a `py.typed` marker for type checkers. This is a
|
|
41
|
+
library package without a command-line interface.
|
|
42
|
+
|
|
43
|
+
## Development
|
|
44
|
+
|
|
45
|
+
See the [repository](https://github.com/betarixm/composables) for development
|
|
46
|
+
instructions, issue reports, and releases.
|
|
47
|
+
|
|
48
|
+
## License
|
|
49
|
+
|
|
50
|
+
[MIT](https://github.com/betarixm/composables/blob/main/LICENSE).
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# composables
|
|
2
|
+
|
|
3
|
+
Composable primitives for Python. Requires Python 3.12 or newer.
|
|
4
|
+
|
|
5
|
+
The library is in its initial scaffolding stage; no public primitives are
|
|
6
|
+
implemented yet.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
After the first release is published to PyPI:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install composables
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
The distribution includes a `py.typed` marker for type checkers. This is a
|
|
17
|
+
library package without a command-line interface.
|
|
18
|
+
|
|
19
|
+
## Development
|
|
20
|
+
|
|
21
|
+
See the [repository](https://github.com/betarixm/composables) for development
|
|
22
|
+
instructions, issue reports, and releases.
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
[MIT](https://github.com/betarixm/composables/blob/main/LICENSE).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Composable primitives for Python."""
|
|
File without changes
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "composables"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Composable primitives for Python."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
requires-python = ">=3.12"
|
|
9
|
+
dependencies = []
|
|
10
|
+
keywords = [
|
|
11
|
+
"composable",
|
|
12
|
+
"primitives",
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Typing :: Typed",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[project.authors]]
|
|
26
|
+
name = "Minjae Gwon"
|
|
27
|
+
email = "betarixm@gmail.com"
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Homepage = "https://github.com/betarixm/composables"
|
|
31
|
+
Repository = "https://github.com/betarixm/composables"
|
|
32
|
+
Issues = "https://github.com/betarixm/composables/issues"
|
|
33
|
+
Changelog = "https://github.com/betarixm/composables/releases"
|
|
34
|
+
|
|
35
|
+
[build-system]
|
|
36
|
+
requires = ["uv_build>=0.12.8,<0.13.0"]
|
|
37
|
+
build-backend = "uv_build"
|
|
38
|
+
|
|
39
|
+
[tool.uv.build-backend]
|
|
40
|
+
module-root = ""
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "composables"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Composable primitives for Python."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Minjae Gwon", email = "betarixm@gmail.com" }
|
|
10
|
+
]
|
|
11
|
+
requires-python = ">=3.12"
|
|
12
|
+
dependencies = []
|
|
13
|
+
keywords = ["composable", "primitives"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Typing :: Typed",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/betarixm/composables"
|
|
27
|
+
Repository = "https://github.com/betarixm/composables"
|
|
28
|
+
Issues = "https://github.com/betarixm/composables/issues"
|
|
29
|
+
Changelog = "https://github.com/betarixm/composables/releases"
|
|
30
|
+
|
|
31
|
+
[build-system]
|
|
32
|
+
requires = ["uv_build>=0.12.8,<0.13.0"]
|
|
33
|
+
build-backend = "uv_build"
|
|
34
|
+
|
|
35
|
+
[tool.uv.build-backend]
|
|
36
|
+
module-root = ""
|