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 6c34993 commit 777b387Copy full SHA for 777b387
setup.py
@@ -1,13 +1,17 @@
1
from setuptools import find_packages, setup
2
+from pathlib import Path
3
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
7
setup(
8
name="ctm-python-client",
9
packages=find_packages(where="src"),
10
package_dir={"": "src"},
11
version="2.1.2",
12
description="Python Workflows for Control-M",
- long_description="Python Workflows for Control-M",
13
+ long_description=long_description,
14
+ long_description_content_type='text/markdown',
15
author="BMC Software",
16
license="BSD 3-Clause",
17
keywords="Control-M",
0 commit comments