diff options
| author | Ana María Martínez Gómez <anamaria@martinezgomez.name> | 2021-02-04 14:20:40 +0100 |
|---|---|---|
| committer | Ana Maria Martinez Gomez <anamaria.martinezgom@mandiant.com> | 2021-02-08 08:02:43 +0100 |
| commit | 0ddbb69a47046047d66e245232453113bff91eae (patch) | |
| tree | cd0363a381b0f7596b6bd5614e84eb4bf1747dbb /setup.py | |
| parent | 75f6a44d3918106c35e2837dda47d3725c3a9f09 (diff) | |
| download | miasm-0ddbb69a47046047d66e245232453113bff91eae.tar.gz miasm-0ddbb69a47046047d66e245232453113bff91eae.zip | |
Add dependencies to install_requires in setup
Add `future` and `pyparsing` to `install_requires` in setup.py as miasm requires them to run correctly. This way they are installed when installing miasm with pip.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py index a20cf9a1..4980028f 100644 --- a/setup.py +++ b/setup.py @@ -242,6 +242,7 @@ def buil_all(): "VERSION" ] }, + install_requires=['future', 'pyparsing'], cmdclass={"install_data": smart_install_data}, ext_modules = ext_modules, # Metadata |