Skip to content

Commit 1d27367

Browse files
author
Dan Cornell
committed
Added README restructured text to setup config
Incremented versoin to 1.0.9
1 parent f454c0e commit 1d27367

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import setuptools
22
from distutils.core import setup
33

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+
410
setup(
511
name='ThreadFixProAPI',
6-
version='1.0.8',
12+
version='1.0.9',
713
packages=['ThreadFixProApi', '_utils',],
814
license='MIT',
9-
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'
1017
)

0 commit comments

Comments
 (0)