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 c22810c commit 67fd2c4Copy full SHA for 67fd2c4
setup.py
@@ -1,14 +1,19 @@
1
__author__ = 'Naor Livne'
2
__author_email__ = 'naorlivne@gmail.com'
3
-__version__ = '1.3.0'
+__version__ = '1.3.1'
4
5
from setuptools import setup, find_packages
6
7
+with open('README.md') as f:
8
+ long_description = f.read()
9
+
10
setup(name='NebulaPythonSDK',
11
author=__author__,
12
author_email=__author_email__,
13
version=__version__,
14
description="NebulaPythonSDK is a Pythonic SDK to manage Nebula container orchestrator",
15
+ long_description=long_description,
16
+ long_description_content_type='text/markdown',
17
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
18
scripts=['setup.py'],
19
license="GPLv3",
0 commit comments