fix: Improve dependencies listing

Partial fix for #110
pull/124/head
Raphaël Vinot 2017-10-20 10:21:10 +02:00
parent c49008a636
commit e2c400aac3
2 changed files with 4 additions and 3 deletions

View File

@ -21,10 +21,8 @@ install:
- pip install coveralls
- pip install codecov
- pip install requests-mock
- pip install https://github.com/lief-project/packages/raw/lief-master-latest/pylief-0.7.0.dev.zip
- pip install git+https://github.com/kbandla/pydeep.git
- pip install python-magic
- pip install .
- pip install .[fileobjects,neo,openioc]
- pushd tests
- git clone https://github.com/viper-framework/viper-test-files.git
- popd

View File

@ -28,6 +28,9 @@ setup(
],
test_suite="tests.test_offline",
install_requires=['six', 'requests', 'python-dateutil', 'jsonschema'],
extras_require={'fileobjects': ['lief>=0.8', 'python-magic'],
'neo': ['py2neo'],
'openioc': ['beautifulsoup4']},
tests_require=[
'jsonschema',
'python-dateutil',