Skip to content

Commit 67fd2c4

Browse files
author
Naor Livne
committed
adding readme.md to pypi
1 parent c22810c commit 67fd2c4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
__author__ = 'Naor Livne'
22
__author_email__ = 'naorlivne@gmail.com'
3-
__version__ = '1.3.0'
3+
__version__ = '1.3.1'
44

55
from setuptools import setup, find_packages
66

7+
with open('README.md') as f:
8+
long_description = f.read()
9+
710
setup(name='NebulaPythonSDK',
811
author=__author__,
912
author_email=__author_email__,
1013
version=__version__,
1114
description="NebulaPythonSDK is a Pythonic SDK to manage Nebula container orchestrator",
15+
long_description=long_description,
16+
long_description_content_type='text/markdown',
1217
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
1318
scripts=['setup.py'],
1419
license="GPLv3",

0 commit comments

Comments
 (0)