diff --git a/README.rst b/README.rst index dafd4c07ab6864a4ef149ce9500291420f5b48cd..9f22def8a73d05a04379f8e6913f734c928f5c21 100644 --- a/README.rst +++ b/README.rst @@ -114,11 +114,11 @@ Installation * NIFTY can be installed using `PyPI `_ and **pip** by running the following command:: - pip install nifty + pip install ift_nifty Alternatively, a private or user specific installation can be done by:: - pip install --user nifty + pip install --user ift_nifty * NIFTY can be installed using **Distutils** by running the following @@ -131,6 +131,15 @@ Installation python setup.py install --user python setup.py install --install-lib=/SOMEWHERE +First Steps +........... + +For a quickstart, you can browse through the +`informal introduction `_ +or dive in to NIFTY by running one of the demos, e.g.:: + + >>> run -m nifty.demos.demo_wf1 + Acknowledgement --------------- diff --git a/setup.py b/setup.py index 9f07a247887ac9728c7f2e489b87248a6bbff2c7..b8715739c7ab2d131ab3bf54cda7a85772ecb28b 100644 --- a/setup.py +++ b/setup.py @@ -22,13 +22,16 @@ from distutils.core import setup import os -setup(name="nifty", +setup(name="ift_nifty", version="1.0.6", - description="Numerical Information Field Theory", author="Marco Selig", author_email="mselig@mpa-garching.mpg.de", + maintainer="Theo Steininger", + maintainer_email="theos@mpa-garching.mpg.de", + description="Numerical Information Field Theory", url="http://www.mpa-garching.mpg.de/ift/nifty/", packages=["nifty", "nifty.demos", "nifty.rg", "nifty.lm"], package_dir={"nifty": ""}, - data_files=[(os.path.expanduser('~') + "/.nifty", ["nifty_config"])]) + data_files=[(os.path.expanduser('~') + "/.nifty", ["nifty_config"])], + license="GPLv3")