diff options
author | 2020-04-21 16:35:23 -0700 | |
---|---|---|
committer | 2020-04-21 16:35:23 -0700 | |
commit | c8b0aa8cda2be070831f50e93ec4837a0e8e6cec (patch) | |
tree | 251e23c9d56f6b763924efeb0424aab75aae045a /Python/setup.py | |
parent | 2773e06656d1a62d3e4ccea3e5a1486d8ea9974d (diff) | |
download | WarpX-c8b0aa8cda2be070831f50e93ec4837a0e8e6cec.tar.gz WarpX-c8b0aa8cda2be070831f50e93ec4837a0e8e6cec.tar.zst WarpX-c8b0aa8cda2be070831f50e93ec4837a0e8e6cec.zip |
Python documentation updates (#936)
* Update Python documentation
* Added numpy as a requirement for the Python installation
* Cleaned EOL white space in Python documentation
* Add periodictable to the Python packages required
Co-Authored-By: Axel Huebl <axel.huebl@plasma.ninja>
* Added periodictable to required packages for pure Python version
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
Diffstat (limited to 'Python/setup.py')
-rw-r--r-- | Python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/setup.py b/Python/setup.py index b62f3f978..bbc57335f 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -33,5 +33,5 @@ setup (name = 'pywarpx', package_dir = {'pywarpx':'pywarpx'}, description = """Wrapper of WarpX""", package_data = package_data, - install_requires=['picmistandard', 'periodictable'] + install_requires=['numpy', 'picmistandard', 'periodictable'] ) |