cdxcore 0.1.6__tar.gz → 0.1.10__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.
Potentially problematic release.
This version of cdxcore might be problematic. Click here for more details.
- cdxcore-0.1.10/PKG-INFO +27 -0
- cdxcore-0.1.10/README.md +3 -0
- cdxcore-0.1.10/cdxcore/__init__.py +7 -0
- cdxcore-0.1.10/cdxcore/config.py +2300 -0
- cdxcore-0.1.10/cdxcore/crman.py +175 -0
- cdxcore-0.1.10/cdxcore/err.py +371 -0
- cdxcore-0.1.10/cdxcore/pretty.py +468 -0
- cdxcore-0.1.10/cdxcore/pretty.py_bak.py +750 -0
- cdxcore-0.1.10/cdxcore/subdir.py +3862 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore/uniquehash.py +515 -363
- cdxcore-0.1.10/cdxcore/util.py +982 -0
- cdxcore-0.1.10/cdxcore/verbose.py +838 -0
- cdxcore-0.1.10/cdxcore/version.py +661 -0
- cdxcore-0.1.10/cdxcore.egg-info/PKG-INFO +27 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore.egg-info/SOURCES.txt +17 -12
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore.egg-info/requires.txt +1 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore.egg-info/top_level.txt +2 -2
- cdxcore-0.1.10/docs/source/conf.py +123 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/pyproject.toml +3 -3
- cdxcore-0.1.10/tests/test_config.py +500 -0
- cdxcore-0.1.10/tests/test_crman.py +54 -0
- cdxcore-0.1.10/tests/test_err.py +86 -0
- cdxcore-0.1.10/tests/test_pretty.py +404 -0
- cdxcore-0.1.10/tests/test_subdir.py +289 -0
- cdxcore-0.1.10/tests/test_uniquehash.py +484 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/tests/test_util.py +122 -83
- cdxcore-0.1.10/tests/test_verbose.py +119 -0
- cdxcore-0.1.10/tests/test_version.py +153 -0
- cdxcore-0.1.10/up/git_message.py +7 -0
- cdxcore-0.1.6/PKG-INFO +0 -1418
- cdxcore-0.1.6/README.md +0 -1395
- cdxcore-0.1.6/cdxcore/__init__.py +0 -15
- cdxcore-0.1.6/cdxcore/config.py +0 -1633
- cdxcore-0.1.6/cdxcore/crman.py +0 -105
- cdxcore-0.1.6/cdxcore/logger.py +0 -319
- cdxcore-0.1.6/cdxcore/prettydict.py +0 -388
- cdxcore-0.1.6/cdxcore/prettyobject.py +0 -64
- cdxcore-0.1.6/cdxcore/subdir.py +0 -2963
- cdxcore-0.1.6/cdxcore/util.py +0 -1041
- cdxcore-0.1.6/cdxcore/verbose.py +0 -403
- cdxcore-0.1.6/cdxcore/version.py +0 -402
- cdxcore-0.1.6/cdxcore.egg-info/PKG-INFO +0 -1418
- cdxcore-0.1.6/conda/conda_exists.py +0 -10
- cdxcore-0.1.6/conda/conda_modify_yaml.py +0 -42
- cdxcore-0.1.6/tests/_cdxbasics.py +0 -1086
- cdxcore-0.1.6/tests/test_uniquehash.py +0 -469
- cdxcore-0.1.6/up/git_message.py +0 -7
- {cdxcore-0.1.6 → cdxcore-0.1.10}/LICENSE +0 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore/jcpool.py +0 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/cdxcore.egg-info/dependency_links.txt +0 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/setup.cfg +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/deferred.py +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/dynaplot.py +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/filelock.py +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/np.py +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/npio.py +0 -0
- {cdxcore-0.1.6/cdxcore → cdxcore-0.1.10/tmp}/sharedarray.py +0 -0
- {cdxcore-0.1.6 → cdxcore-0.1.10}/up/pip_modify_setup.py +0 -0
cdxcore-0.1.10/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cdxcore
|
|
3
|
+
Version: 0.1.10
|
|
4
|
+
Summary: Basic Python Tools; upgraded cdxbasics
|
|
5
|
+
Author-email: Hans Buehler <github@buehler.london>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/hansbuehler/cdxcore
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: numpy
|
|
14
|
+
Requires-Dist: pandas
|
|
15
|
+
Requires-Dist: matplotlib
|
|
16
|
+
Requires-Dist: sortedcontainers
|
|
17
|
+
Requires-Dist: psutil
|
|
18
|
+
Requires-Dist: jsonpickle
|
|
19
|
+
Requires-Dist: numba
|
|
20
|
+
Requires-Dist: joblib
|
|
21
|
+
Requires-Dist: blosc
|
|
22
|
+
Requires-Dist: mkdocstrings[python]>=0.18
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# cdxcore
|
|
26
|
+
Under construction.
|
|
27
|
+
|
cdxcore-0.1.10/README.md
ADDED