File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 2
2
Mimicus v1.0
3
3
================
4
4
5
- -----------------------------------------------------
6
- A Python library for adversarial classifier evasion.
7
- -----------------------------------------------------
8
-
5
+ A Python library for adversarial classifier evasion by
9
6
Nedim Srndic and Pavel Laskov, University of Tuebingen.
10
7
11
8
Homepage: https://github.com/srndic/mimicus
@@ -74,13 +71,15 @@ Required Dependencies
74
71
75
72
The following third-party Python libraries are required:
76
73
74
+ - ``matplotlib `` >= 1.1.1rc
77
75
- ``numpy `` >= 1.6.1
78
76
- ``scikit_learn `` >= 0.14.1
79
77
- ``scipy `` >= 0.9.0
80
78
81
79
They will be automatically installed by ``setuptools `` or you can
82
80
install them manually using ``pip ``::
83
81
82
+ pip install matplotlib
84
83
pip install numpy
85
84
pip install scikit_learn
86
85
Original file line number Diff line number Diff line change @@ -32,15 +32,17 @@ def readme():
32
32
setup (name = 'mimicus' ,
33
33
version = '1.0' ,
34
34
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' ,
36
37
author = 'Nedim Srndic, Pavel Laskov' ,
37
38
author_email = 'nedim.srndic@uni-tuebingen.de' ,
38
39
license = 'GPLv3' ,
39
40
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' ,
42
44
'scipy >= 0.9.0' ],
43
45
zip_safe = False ,
44
46
test_suite = 'nose.collector' ,
45
47
tests_require = ['nose' ],
46
- include_package_data = True )
48
+ include_package_data = True )
You can’t perform that action at this time.
0 commit comments