dataprism 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.
- dataprism-0.0.1/LICENSE +21 -0
- dataprism-0.0.1/PKG-INFO +65 -0
- dataprism-0.0.1/README.md +39 -0
- dataprism-0.0.1/dataprism/__init__.py +14 -0
- dataprism-0.0.1/dataprism.egg-info/PKG-INFO +65 -0
- dataprism-0.0.1/dataprism.egg-info/SOURCES.txt +8 -0
- dataprism-0.0.1/dataprism.egg-info/dependency_links.txt +1 -0
- dataprism-0.0.1/dataprism.egg-info/top_level.txt +1 -0
- dataprism-0.0.1/pyproject.toml +33 -0
- dataprism-0.0.1/setup.cfg +4 -0
dataprism-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 LattIQ
|
|
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.
|
dataprism-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dataprism
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python library for exploratory data analysis
|
|
5
|
+
Author-email: LattIQ Development Team <dev@lattiq.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/lattiq/dataprism
|
|
8
|
+
Project-URL: Repository, https://github.com/lattiq/dataprism
|
|
9
|
+
Keywords: data analysis,exploratory data analysis,eda
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# DataPrism
|
|
28
|
+
|
|
29
|
+
A Python library for exploratory data analysis.
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
**This is a placeholder package for name reservation on PyPI.**
|
|
34
|
+
|
|
35
|
+
DataPrism is currently under development. This minimal package is published to reserve the name on PyPI while we work on the full implementation.
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install dataprism
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Usage
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
import dataprism
|
|
47
|
+
print(dataprism.hello())
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Coming Soon
|
|
51
|
+
|
|
52
|
+
DataPrism will provide comprehensive tools for exploratory data analysis including:
|
|
53
|
+
- Data profiling and summarization
|
|
54
|
+
- Automated visualization generation
|
|
55
|
+
- Statistical analysis utilities
|
|
56
|
+
- Data quality assessment
|
|
57
|
+
- And much more!
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT License
|
|
62
|
+
|
|
63
|
+
## Contact
|
|
64
|
+
|
|
65
|
+
For questions or suggestions, please contact us at dev@lattiq.com
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# DataPrism
|
|
2
|
+
|
|
3
|
+
A Python library for exploratory data analysis.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
**This is a placeholder package for name reservation on PyPI.**
|
|
8
|
+
|
|
9
|
+
DataPrism is currently under development. This minimal package is published to reserve the name on PyPI while we work on the full implementation.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install dataprism
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
import dataprism
|
|
21
|
+
print(dataprism.hello())
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Coming Soon
|
|
25
|
+
|
|
26
|
+
DataPrism will provide comprehensive tools for exploratory data analysis including:
|
|
27
|
+
- Data profiling and summarization
|
|
28
|
+
- Automated visualization generation
|
|
29
|
+
- Statistical analysis utilities
|
|
30
|
+
- Data quality assessment
|
|
31
|
+
- And much more!
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT License
|
|
36
|
+
|
|
37
|
+
## Contact
|
|
38
|
+
|
|
39
|
+
For questions or suggestions, please contact us at dev@lattiq.com
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
DataPrism - A Python library for exploratory data analysis.
|
|
3
|
+
|
|
4
|
+
This is a minimal package for name reservation on PyPI.
|
|
5
|
+
Full functionality will be implemented in future releases.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
__author__ = "LattIQ Development Team"
|
|
10
|
+
__email__ = "dev@lattiq.com"
|
|
11
|
+
|
|
12
|
+
def hello():
|
|
13
|
+
"""A simple hello function for testing the package installation."""
|
|
14
|
+
return "Hello from DataPrism! This package is under development."
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dataprism
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python library for exploratory data analysis
|
|
5
|
+
Author-email: LattIQ Development Team <dev@lattiq.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/lattiq/dataprism
|
|
8
|
+
Project-URL: Repository, https://github.com/lattiq/dataprism
|
|
9
|
+
Keywords: data analysis,exploratory data analysis,eda
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# DataPrism
|
|
28
|
+
|
|
29
|
+
A Python library for exploratory data analysis.
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
**This is a placeholder package for name reservation on PyPI.**
|
|
34
|
+
|
|
35
|
+
DataPrism is currently under development. This minimal package is published to reserve the name on PyPI while we work on the full implementation.
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install dataprism
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Usage
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
import dataprism
|
|
47
|
+
print(dataprism.hello())
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Coming Soon
|
|
51
|
+
|
|
52
|
+
DataPrism will provide comprehensive tools for exploratory data analysis including:
|
|
53
|
+
- Data profiling and summarization
|
|
54
|
+
- Automated visualization generation
|
|
55
|
+
- Statistical analysis utilities
|
|
56
|
+
- Data quality assessment
|
|
57
|
+
- And much more!
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT License
|
|
62
|
+
|
|
63
|
+
## Contact
|
|
64
|
+
|
|
65
|
+
For questions or suggestions, please contact us at dev@lattiq.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dataprism
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dataprism"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A Python library for exploratory data analysis"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "LattIQ Development Team", email = "dev@lattiq.com"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["data analysis", "exploratory data analysis", "eda"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.8",
|
|
23
|
+
"Programming Language :: Python :: 3.9",
|
|
24
|
+
"Programming Language :: Python :: 3.10",
|
|
25
|
+
"Programming Language :: Python :: 3.11",
|
|
26
|
+
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Topic :: Scientific/Engineering",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/lattiq/dataprism"
|
|
33
|
+
Repository = "https://github.com/lattiq/dataprism"
|