We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf8b30 commit cf023bdCopy full SHA for cf023bd
setup.py
@@ -18,10 +18,14 @@
18
from setuptools import setup
19
from setuptools import find_packages
20
21
+with open("README.md", "r") as fh:
22
+ long_description = fh.read()
23
24
setup(name='adversarial_robustness_toolbox',
- version='0.1',
25
+ version='0.2.0',
26
description='IBM Adversarial machine learning toolbox',
27
+ long_description=long_description,
28
+ long_description_content_type="text/markdown",
29
author='Irina Nicolae',
30
author_email='[email protected]',
31
url='https://github.com/IBM/adversarial-robustness-toolbox',
0 commit comments