-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
24 lines (20 loc) · 928 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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='[email protected]',
packages=['pynkowski','pynkowski.data','pynkowski.theory','pynkowski.stats'],
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'
],
)