-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d8c546
commit 92c1095
Showing
11 changed files
with
150 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
.ipynb_checkpoints/* | ||
|
||
pynkowski/__pycache__/ | ||
pynkowski/data/__pycache__/ | ||
pynkowski/theory/__pycache__/ | ||
pynkowski/data/__pycache__/__init__.cpython-39.pyc | ||
pynkowski/pynkowski.egg-info/ | ||
sphinx/ | ||
dist/ | ||
.ipynb_checkpoints/ | ||
Pynkowski_test.ipynb | ||
|
||
*.kate-swp | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Metadata-Version: 2.1 | ||
Name: pynkowski | ||
Version: 0.2.1 | ||
Summary: A Python package to compute Minkowski Functionals of input fields, as well as their expected values in the case of Gaussian isotropic fields. | ||
Home-page: https://github.com/javicarron/pynkowski | ||
Author: Carrón Duque, Javier and Carones, Alessando | ||
Author-email: javier.carron@roma2.infn.it | ||
License: GNU General Public License v3.0 | ||
Keywords: minkowski-functionals,non-gaussian,spherical,anisotropy,healpy,polarization,minkowski,cmb,healpix,curvature,cosmology,gaussian,maps,topology | ||
Platform: UNKNOWN | ||
License-File: LICENSE | ||
|
||
UNKNOWN | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
LICENSE | ||
README.md | ||
logo.png | ||
setup.py | ||
docs/index.html | ||
docs/pynkowski.html | ||
docs/search.js | ||
docs/pynkowski/__version.html | ||
docs/pynkowski/data.html | ||
docs/pynkowski/theory.html | ||
docs/pynkowski/data/bak_data.html | ||
docs/pynkowski/data/scalar.html | ||
docs/pynkowski/data/utils.html | ||
docs/pynkowski/theory/bak_theory.html | ||
docs/pynkowski/theory/p2.html | ||
docs/pynkowski/theory/temperature.html | ||
docs/pynkowski/theory/utils.html | ||
pynkowski/__init__.py | ||
pynkowski/__version.py | ||
pynkowski.egg-info/PKG-INFO | ||
pynkowski.egg-info/SOURCES.txt | ||
pynkowski.egg-info/dependency_links.txt | ||
pynkowski.egg-info/requires.txt | ||
pynkowski.egg-info/top_level.txt | ||
pynkowski/data/__init__.py | ||
pynkowski/data/scalar.py | ||
pynkowski/data/utils.py | ||
pynkowski/data/__pycache__/__init__.cpython-39.pyc | ||
pynkowski/data/__pycache__/scalar.cpython-39.pyc | ||
pynkowski/data/__pycache__/utils.cpython-39.pyc | ||
pynkowski/theory/__init__.py | ||
pynkowski/theory/p2.py | ||
pynkowski/theory/temperature.py | ||
pynkowski/theory/utils.py | ||
pynkowski/theory/__pycache__/__init__.cpython-39.pyc | ||
pynkowski/theory/__pycache__/p2.cpython-39.pyc | ||
pynkowski/theory/__pycache__/temperature.cpython-39.pyc | ||
pynkowski/theory/__pycache__/utils.cpython-39.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
numpy | ||
scipy | ||
healpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pynkowski |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__='0.2.0' | ||
__version__='0.2.1' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
from setuptools import setup, find_namespace_packages | ||
from pynkowski.__version import __version__ | ||
|
||
|
||
setup( | ||
name='pynkowski', | ||
version=__version__, | ||
description='A Python package to compute Minkowski Functionals of input fields, as well as their expected values in the case of Gaussian isotropic fields.', | ||
license='GNU General Public License v3.0', | ||
license_files=['LICENSE'], | ||
author="Carrón Duque, Javier and Carones, Alessando", | ||
author_email='javier.carron@roma2.infn.it', | ||
packages=['pynkowski','pynkowski.data','pynkowski.theory'], | ||
package_dir={"pynkowski": "pynkowski"}, | ||
url='https://github.com/javicarron/pynkowski', | ||
keywords='minkowski-functionals,non-gaussian,spherical,anisotropy,healpy,polarization,minkowski,cmb,healpix,curvature,cosmology,gaussian,maps,topology', | ||
install_requires=[ | ||
'numpy', | ||
'scipy', | ||
'healpy' | ||
], | ||
|
||
) |