Skip to content

Commit a28f6f7

Browse files
committed
Fixed PYPI project description.
1 parent 6a9c3e8 commit a28f6f7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='deepdefend',
58
version='{{VERSION_PLACEHOLDER}}',
69
author='Infinitode Pty Ltd',
710
author_email='infinitode.ltd@gmail.com',
8-
description='An open-source Python library for adversarial attacks and defenses in deep learning models.',
9-
long_description='An open-source Python library for adversarial attacks and defenses in deep learning models, enhancing the security and robustness of AI systems.',
11+
description='An open-source Python library for adversarial attacks and defenses in deep learning models, enhancing the security and robustness of AI systems.',
12+
long_description= long_description,
1013
long_description_content_type='text/markdown',
1114
url='https://github.com/infinitode/deepdefend',
1215
packages=find_packages(),

0 commit comments

Comments
 (0)