Skip to content

Commit

Permalink
FIX long_description in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dmranck committed Jan 7, 2019
1 parent f7c7b80 commit 8249b09
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@

from setuptools import setup

with open('README.rst') as file:
long_description = file.read()
with open('HISTORY.rst') as file:
long_description += '\n{0}'.format(file.read())

setup(
name='ticketutil',
packages=['ticketutil'],
version='1.4.0',
description='Python ticketing utility supporting JIRA, RT, Redmine, Bugzilla, and ServiceNow',
long_description=long_description,
author='Danny Ranck',
author_email='dmranck@gmail.com',
url='https://github.com/dmranck/ticketutil',
Expand Down

0 comments on commit 8249b09

Please sign in to comment.