greapy 0.0.1__py2.py3-none-any.whl
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.
- greapy/__init__.py +5 -0
- greapy/cli.py +19 -0
- greapy/common.py +7 -0
- greapy/greapy.py +1 -0
- greapy-0.0.1.dist-info/METADATA +43 -0
- greapy-0.0.1.dist-info/RECORD +10 -0
- greapy-0.0.1.dist-info/WHEEL +6 -0
- greapy-0.0.1.dist-info/entry_points.txt +2 -0
- greapy-0.0.1.dist-info/licenses/LICENSE +22 -0
- greapy-0.0.1.dist-info/top_level.txt +1 -0
greapy/__init__.py
ADDED
greapy/cli.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Console script for greapy."""
|
|
2
|
+
import argparse
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main():
|
|
7
|
+
"""Console script for greapy."""
|
|
8
|
+
parser = argparse.ArgumentParser()
|
|
9
|
+
parser.add_argument('_', nargs='*')
|
|
10
|
+
args = parser.parse_args()
|
|
11
|
+
|
|
12
|
+
print("Arguments: " + str(args._))
|
|
13
|
+
print("Replace this message by putting your code into "
|
|
14
|
+
"greapy.cli.main")
|
|
15
|
+
return 0
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
sys.exit(main()) # pragma: no cover
|
greapy/common.py
ADDED
greapy/greapy.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Main module."""
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: greapy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A simple python-based implementation of the General Relativistic Entropic Acceleration (GREA) theory
|
|
5
|
+
Author-email: Rodrigo Calderon <calderon.cosmology@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
Project-URL: Homepage, https://github.com/rcalderonb6/greapy
|
|
8
|
+
Keywords: greapy
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: numpy
|
|
21
|
+
Provides-Extra: all
|
|
22
|
+
Requires-Dist: greapy[extra]; extra == "all"
|
|
23
|
+
Provides-Extra: extra
|
|
24
|
+
Requires-Dist: pandas; extra == "extra"
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# `GREApy`
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
[](https://pypi.python.org/pypi/greapy)
|
|
31
|
+
[](https://anaconda.org/conda-forge/greapy)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
**A simple python-based implementation of the General Relativistic Entropic Acceleration (GREA) theory**
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
- Free software: MIT License
|
|
38
|
+
- Documentation: https://rcalderonb6.github.io/greapy
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
<!-- ## Features -->
|
|
42
|
+
|
|
43
|
+
<!-- - TODO -->
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
greapy/__init__.py,sha256=4VDGdlqlT2pMMlC6fUmmGjqst2mg5uGjU2N49WwuIRk,138
|
|
2
|
+
greapy/cli.py,sha256=l28phUz9alBcn2bAnRb8Qa93hslL19uB04Xjc6PVtlA,433
|
|
3
|
+
greapy/common.py,sha256=UkxoF8RazqaFu7o-ZH3HUoPu7oVGAAB3Ja02Zm6IW9I,189
|
|
4
|
+
greapy/greapy.py,sha256=h0hwdogXGFqerm-5ZPeT-irPn91pCcQRjiHThXsRzEk,19
|
|
5
|
+
greapy-0.0.1.dist-info/licenses/LICENSE,sha256=qZ9cTKbshd3jlipkRHKXySPxoyGDyfR1crh9aLAhlHo,1075
|
|
6
|
+
greapy-0.0.1.dist-info/METADATA,sha256=npmW2pCbQrN0Of48tEdOBUjM3PiWGlrFB9FXd4MeajM,1418
|
|
7
|
+
greapy-0.0.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
8
|
+
greapy-0.0.1.dist-info/entry_points.txt,sha256=X6cgLCzEtMNvljexrm7RatpMHNh6gqydNlljDJrL4x8,43
|
|
9
|
+
greapy-0.0.1.dist-info/top_level.txt,sha256=TjtpmyRKtkSqrWdolUFqsMQe_Wkd-z2ViY7gbe18OtM,7
|
|
10
|
+
greapy-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Rodrigo Calderon
|
|
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.
|
|
22
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
greapy
|