diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-06-24 13:26:56 +0200 |
|---|---|---|
| committer | Georgios Andreadis <info@gandreadis.com> | 2020-06-24 13:26:56 +0200 |
| commit | db979d36d0b9693cc81ffa0bdd29364c6218fc95 (patch) | |
| tree | 269c21d599ecd190a87e51775ef533b0ea847b56 /setup.py | |
| parent | c7f773b027019086153f0260b507c8fa173ee5e8 (diff) | |
Add working test setup
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -24,8 +24,22 @@ setup( ], keywords='opendc datacenter simulation web-server', packages=['opendc'], + # yapf: disable install_requires=[ - 'flask==1.0.2', 'flask-socketio==3.0.2', 'oauth2client==4.1.3', 'eventlet==0.24.1', 'flask-compress==1.4.0', - 'flask-cors==3.0.8', 'pyasn1-modules==0.2.2', 'six==1.11.0', 'pymongo==3.10.1', 'bson==0.5.10', 'yapf==0.30.0' + 'flask==1.0.2', + 'flask-socketio==3.0.2', + 'oauth2client==4.1.3', + 'eventlet==0.24.1', + 'flask-compress==1.4.0', + 'flask-cors==3.0.8', + 'pyasn1-modules==0.2.2', + 'six==1.11.0', + 'pymongo==3.10.1', + 'bson==0.5.10', + 'yapf==0.30.0', + 'pytest==5.4.3', + 'pytest-mock==3.1.1', + 'pytest-env==0.6.2', ], + # yapf: enable ) |
