Skip to content

Commit df49ac9

Browse files
author
Nedim Šrndić
committed
Added a dependency on Matplotlib in setup.py
1 parent 330f8ae commit df49ac9

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
Mimicus v1.0
33
================
44

5-
-----------------------------------------------------
6-
A Python library for adversarial classifier evasion.
7-
-----------------------------------------------------
8-
5+
A Python library for adversarial classifier evasion by
96
Nedim Srndic and Pavel Laskov, University of Tuebingen.
107

118
Homepage: https://github.com/srndic/mimicus
@@ -74,13 +71,15 @@ Required Dependencies
7471

7572
The following third-party Python libraries are required:
7673

74+
- ``matplotlib`` >= 1.1.1rc
7775
- ``numpy`` >= 1.6.1
7876
- ``scikit_learn`` >= 0.14.1
7977
- ``scipy`` >= 0.9.0
8078

8179
They will be automatically installed by ``setuptools`` or you can
8280
install them manually using ``pip``::
8381

82+
pip install matplotlib
8483
pip install numpy
8584
pip install scikit_learn
8685

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ def readme():
3232
setup(name='mimicus',
3333
version='1.0',
3434
description='A library for adversarial classifier evasion',
35-
url='https://github.com/srndic/mimicus.git',
35+
url='https://github.com/srndic/mimicus',
36+
download_url='https://github.com/srndic/mimicus/tarball/master',
3637
author='Nedim Srndic, Pavel Laskov',
3738
author_email='nedim.srndic@uni-tuebingen.de',
3839
license='GPLv3',
3940
packages=find_packages(),
40-
install_requires=['numpy >= 1.6.1',
41-
'scikit_learn >= 0.14.1',
41+
install_requires=['matplotlib >= 1.1.1rc',
42+
'numpy >= 1.6.1',
43+
'scikit_learn >= 0.13.1',
4244
'scipy >= 0.9.0'],
4345
zip_safe=False,
4446
test_suite='nose.collector',
4547
tests_require=['nose'],
46-
include_package_data=True)
48+
include_package_data=True)

0 commit comments

Comments
 (0)