We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f454c0e commit 1d27367Copy full SHA for 1d27367
1 file changed
setup.py
@@ -1,10 +1,17 @@
1
import setuptools
2
from distutils.core import setup
3
4
+# read in the contents of the README file
5
+from os import path
6
+this_directory = path.abspath(path.dirname(__file__))
7
+with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
8
+ long_description = f.read()
9
+
10
setup(
11
name='ThreadFixProAPI',
- version='1.0.8',
12
+ version='1.0.9',
13
packages=['ThreadFixProApi', '_utils',],
14
license='MIT',
- long_description='A python implementation of ThreadFix\'s API for easier use with python. Built off of original work by (c) 2018 Target Brands, Inc.'
15
+ long_description=long_description,
16
+ long_description_content_type='text/x-rst'
17
)
0 commit comments