powerbin 0.0.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.
- powerbin-0.0.0/LICENSE.txt +14 -0
- powerbin-0.0.0/PKG-INFO +23 -0
- powerbin-0.0.0/README.md +8 -0
- powerbin-0.0.0/powerbin.egg-info/PKG-INFO +23 -0
- powerbin-0.0.0/powerbin.egg-info/SOURCES.txt +7 -0
- powerbin-0.0.0/powerbin.egg-info/dependency_links.txt +1 -0
- powerbin-0.0.0/powerbin.egg-info/top_level.txt +1 -0
- powerbin-0.0.0/pyproject.toml +21 -0
- powerbin-0.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
License
|
|
3
|
+
=======
|
|
4
|
+
|
|
5
|
+
Other/Proprietary License
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2025 Michele Cappellari
|
|
8
|
+
|
|
9
|
+
This software is provided as is with no warranty. You may use it for
|
|
10
|
+
non-commercial purposes and modify it for personal or internal use, as long
|
|
11
|
+
as you include this copyright and disclaimer in all copies. You may not
|
|
12
|
+
redistribute the code.
|
|
13
|
+
|
|
14
|
+
###########################################################################
|
powerbin-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: powerbin
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for the upcoming PowerBin package
|
|
5
|
+
Author-email: Michele Cappellari <michele.cappellari@physics.ox.ac.uk>
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE.txt
|
|
14
|
+
Dynamic: license-file
|
|
15
|
+
|
|
16
|
+
# PowerBin
|
|
17
|
+
|
|
18
|
+
This is a placeholder release for the upcoming **PowerBin** package.
|
|
19
|
+
|
|
20
|
+
PowerBin will provide advanced spatial binning algorithms with
|
|
21
|
+
O(N log N) scaling, robust shape metrics, and reproducible scientific workflows.
|
|
22
|
+
|
|
23
|
+
📄 This placeholder exists to reserve the name on PyPI ahead of the official release.
|
powerbin-0.0.0/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# PowerBin
|
|
2
|
+
|
|
3
|
+
This is a placeholder release for the upcoming **PowerBin** package.
|
|
4
|
+
|
|
5
|
+
PowerBin will provide advanced spatial binning algorithms with
|
|
6
|
+
O(N log N) scaling, robust shape metrics, and reproducible scientific workflows.
|
|
7
|
+
|
|
8
|
+
📄 This placeholder exists to reserve the name on PyPI ahead of the official release.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: powerbin
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for the upcoming PowerBin package
|
|
5
|
+
Author-email: Michele Cappellari <michele.cappellari@physics.ox.ac.uk>
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE.txt
|
|
14
|
+
Dynamic: license-file
|
|
15
|
+
|
|
16
|
+
# PowerBin
|
|
17
|
+
|
|
18
|
+
This is a placeholder release for the upcoming **PowerBin** package.
|
|
19
|
+
|
|
20
|
+
PowerBin will provide advanced spatial binning algorithms with
|
|
21
|
+
O(N log N) scaling, robust shape metrics, and reproducible scientific workflows.
|
|
22
|
+
|
|
23
|
+
📄 This placeholder exists to reserve the name on PyPI ahead of the official release.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "powerbin"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder for the upcoming PowerBin package"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Michele Cappellari", email = "michele.cappellari@physics.ox.ac.uk" }
|
|
12
|
+
]
|
|
13
|
+
license = "LicenseRef-Proprietary"
|
|
14
|
+
license-files = ["LICENSE.txt"]
|
|
15
|
+
requires-python = ">=3.8"
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Scientific/Engineering"
|
|
21
|
+
]
|
powerbin-0.0.0/setup.cfg
ADDED