Skip to content

Commit 777b387

Browse files
authored
Update setup.py
1 parent 6c34993 commit 777b387

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
from setuptools import find_packages, setup
2+
from pathlib import Path
23

4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
36

47
setup(
58
name="ctm-python-client",
69
packages=find_packages(where="src"),
710
package_dir={"": "src"},
811
version="2.1.2",
912
description="Python Workflows for Control-M",
10-
long_description="Python Workflows for Control-M",
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
1115
author="BMC Software",
1216
license="BSD 3-Clause",
1317
keywords="Control-M",

0 commit comments

Comments
 (0)