clunat 0.1.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.
- clunat-0.1.1/PKG-INFO +27 -0
- clunat-0.1.1/README.md +16 -0
- clunat-0.1.1/clunat/__init__.py +12 -0
- clunat-0.1.1/clunat.egg-info/PKG-INFO +27 -0
- clunat-0.1.1/clunat.egg-info/SOURCES.txt +7 -0
- clunat-0.1.1/clunat.egg-info/dependency_links.txt +1 -0
- clunat-0.1.1/clunat.egg-info/top_level.txt +1 -0
- clunat-0.1.1/pyproject.toml +21 -0
- clunat-0.1.1/setup.cfg +4 -0
clunat-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clunat
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A function-based Python package for clunat
|
|
5
|
+
Author: Clunat
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# clunat
|
|
13
|
+
|
|
14
|
+
A Python package for clunat, version 0.01.1.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install clunat
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import clunat
|
|
26
|
+
clunat.clunat_function()
|
|
27
|
+
```
|
clunat-0.1.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Clunat package initialization.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__version__ = "0.01.1"
|
|
6
|
+
|
|
7
|
+
def clunat_function():
|
|
8
|
+
"""
|
|
9
|
+
Main function for the clunat package (version 0.01.1).
|
|
10
|
+
"""
|
|
11
|
+
print("Welcome to Clunat v0.01.1! This is your PyPI-ready function package.")
|
|
12
|
+
return "Clunat v0.01.1 active"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clunat
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A function-based Python package for clunat
|
|
5
|
+
Author: Clunat
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# clunat
|
|
13
|
+
|
|
14
|
+
A Python package for clunat, version 0.01.1.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install clunat
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import clunat
|
|
26
|
+
clunat.clunat_function()
|
|
27
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clunat
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "clunat"
|
|
7
|
+
version = "0.01.1"
|
|
8
|
+
description = "A function-based Python package for clunat"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Clunat" }
|
|
12
|
+
]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
requires-python = ">=3.7"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools]
|
|
21
|
+
packages = ["clunat"]
|
clunat-0.1.1/setup.cfg
ADDED