Skip to content

Commit

Permalink
fix description in setup.py
Browse files Browse the repository at this point in the history
Signed-off-by: matthias.gatto <[email protected]>
  • Loading branch information
outscale-mgo committed Aug 20, 2024
1 parent 8b92c70 commit 2797a10
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# -*- coding:utf-8 -*-
import os
from setuptools import find_packages, setup

def get_long_description():
root_path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(root_path, 'README.md'), 'r') as fd:
return fd.read()


setup(
name='osc-tui',
version="24.06.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(),
author='Outscale SAS',
author_email='[email protected]',
Expand Down

0 comments on commit 2797a10

Please sign in to comment.