viewprint 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.
- viewprint-0.0.1/LICENSE +21 -0
- viewprint-0.0.1/PKG-INFO +65 -0
- viewprint-0.0.1/README.md +44 -0
- viewprint-0.0.1/pyproject.toml +42 -0
- viewprint-0.0.1/setup.cfg +4 -0
- viewprint-0.0.1/src/view/__init__.py +23 -0
- viewprint-0.0.1/src/viewprint.egg-info/PKG-INFO +65 -0
- viewprint-0.0.1/src/viewprint.egg-info/SOURCES.txt +8 -0
- viewprint-0.0.1/src/viewprint.egg-info/dependency_links.txt +1 -0
- viewprint-0.0.1/src/viewprint.egg-info/top_level.txt +1 -0
viewprint-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jason Kishore Mohan Raj
|
|
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 all
|
|
13
|
+
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 THE
|
|
21
|
+
SOFTWARE.
|
viewprint-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: viewprint
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A lightweight Python package. Under active development.
|
|
5
|
+
Author-email: Jason Kishore Mohan Raj <jasonkishore82@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/jasonkishore82/view
|
|
8
|
+
Project-URL: Repository, https://github.com/jasonkishore82/view
|
|
9
|
+
Project-URL: Issues, https://github.com/jasonkishore82/view/issues
|
|
10
|
+
Keywords: view,python,terminal,printing
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# view
|
|
23
|
+
|
|
24
|
+
A lightweight Python package by **Jason Kishore Mohan Raj**.
|
|
25
|
+
|
|
26
|
+
## 🚧 Under Construction
|
|
27
|
+
|
|
28
|
+
`view` is currently under active development.
|
|
29
|
+
|
|
30
|
+
The first public release simply reserves the package name while the library is being built.
|
|
31
|
+
|
|
32
|
+
Future releases will introduce powerful and lightweight utilities for Python developers.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install view
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import view
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
The current release intentionally raises an `ImportError` indicating that the package is still under development.
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Author
|
|
55
|
+
|
|
56
|
+
Jason Kishore Mohan Raj
|
|
57
|
+
|
|
58
|
+
GitHub:
|
|
59
|
+
https://github.com/jasonkishore82
|
|
60
|
+
|
|
61
|
+
Email:
|
|
62
|
+
jasonkishore82@gmail.com
|
|
63
|
+
|
|
64
|
+
License:
|
|
65
|
+
MIT
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# view
|
|
2
|
+
|
|
3
|
+
A lightweight Python package by **Jason Kishore Mohan Raj**.
|
|
4
|
+
|
|
5
|
+
## 🚧 Under Construction
|
|
6
|
+
|
|
7
|
+
`view` is currently under active development.
|
|
8
|
+
|
|
9
|
+
The first public release simply reserves the package name while the library is being built.
|
|
10
|
+
|
|
11
|
+
Future releases will introduce powerful and lightweight utilities for Python developers.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install view
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import view
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The current release intentionally raises an `ImportError` indicating that the package is still under development.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Author
|
|
34
|
+
|
|
35
|
+
Jason Kishore Mohan Raj
|
|
36
|
+
|
|
37
|
+
GitHub:
|
|
38
|
+
https://github.com/jasonkishore82
|
|
39
|
+
|
|
40
|
+
Email:
|
|
41
|
+
jasonkishore82@gmail.com
|
|
42
|
+
|
|
43
|
+
License:
|
|
44
|
+
MIT
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "viewprint"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A lightweight Python package. Under active development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Jason Kishore Mohan Raj", email = "jasonkishore82@gmail.com" }
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
keywords = [
|
|
18
|
+
"view",
|
|
19
|
+
"python",
|
|
20
|
+
"terminal",
|
|
21
|
+
"printing"
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Development Status :: 1 - Planning",
|
|
26
|
+
"Intended Audience :: Developers",
|
|
27
|
+
"License :: OSI Approved :: MIT License",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
30
|
+
"Operating System :: OS Independent"
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/jasonkishore82/view"
|
|
35
|
+
Repository = "https://github.com/jasonkishore82/view"
|
|
36
|
+
Issues = "https://github.com/jasonkishore82/view/issues"
|
|
37
|
+
|
|
38
|
+
[tool.setuptools]
|
|
39
|
+
package-dir = {"" = "src"}
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.packages.find]
|
|
42
|
+
where = ["src"]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
view
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2026 Jason Kishore Mohan Raj
|
|
5
|
+
|
|
6
|
+
This package is currently under active development.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__title__ = "view"
|
|
10
|
+
__author__ = "Jason Kishore Mohan Raj"
|
|
11
|
+
__email__ = "jasonkishore82@gmail.com"
|
|
12
|
+
__version__ = "0.0.1"
|
|
13
|
+
__license__ = "MIT"
|
|
14
|
+
|
|
15
|
+
raise ImportError(
|
|
16
|
+
"\n"
|
|
17
|
+
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n"
|
|
18
|
+
"The 'view' package is currently under development.\n\n"
|
|
19
|
+
"This initial release reserves the package name on PyPI.\n\n"
|
|
20
|
+
"Author : Jason Kishore Mohan Raj\n"
|
|
21
|
+
"GitHub : https://github.com/jasonkishore82\n"
|
|
22
|
+
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
23
|
+
)
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: viewprint
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A lightweight Python package. Under active development.
|
|
5
|
+
Author-email: Jason Kishore Mohan Raj <jasonkishore82@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/jasonkishore82/view
|
|
8
|
+
Project-URL: Repository, https://github.com/jasonkishore82/view
|
|
9
|
+
Project-URL: Issues, https://github.com/jasonkishore82/view/issues
|
|
10
|
+
Keywords: view,python,terminal,printing
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# view
|
|
23
|
+
|
|
24
|
+
A lightweight Python package by **Jason Kishore Mohan Raj**.
|
|
25
|
+
|
|
26
|
+
## 🚧 Under Construction
|
|
27
|
+
|
|
28
|
+
`view` is currently under active development.
|
|
29
|
+
|
|
30
|
+
The first public release simply reserves the package name while the library is being built.
|
|
31
|
+
|
|
32
|
+
Future releases will introduce powerful and lightweight utilities for Python developers.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install view
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import view
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
The current release intentionally raises an `ImportError` indicating that the package is still under development.
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Author
|
|
55
|
+
|
|
56
|
+
Jason Kishore Mohan Raj
|
|
57
|
+
|
|
58
|
+
GitHub:
|
|
59
|
+
https://github.com/jasonkishore82
|
|
60
|
+
|
|
61
|
+
Email:
|
|
62
|
+
jasonkishore82@gmail.com
|
|
63
|
+
|
|
64
|
+
License:
|
|
65
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
view
|