Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
e115643c
Commit
e115643c
authored
Feb 12, 2015
by
Marco Selig
Browse files
pip fix and README update.
parent
6b859466
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.rst
View file @
e115643c
...
...
@@ -114,11 +114,11 @@ Installation
*
NIFTY
can
be
installed
using
`
PyPI
<
https
://
pypi
.
python
.
org
/
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
<
http
://
www
.
mpa
-
garching
.
mpg
.
de
/
ift
/
nifty
/
start
.
html
>`
_
or
dive
in
to
NIFTY
by
running
one
of
the
demos
,
e
.
g
.::
>>>
run
-
m
nifty
.
demos
.
demo_wf1
Acknowledgement
---------------
...
...
setup.py
View file @
e115643c
...
...
@@ -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"
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment